Index: LayoutTests/fast/runin/runin-between-list-marker-and-before-content.html |
=================================================================== |
--- LayoutTests/fast/runin/runin-between-list-marker-and-before-content.html (revision 118863) |
+++ LayoutTests/fast/runin/runin-between-list-marker-and-before-content.html (working copy) |
@@ -1,15 +1,14 @@ |
<!DOCTYPE html> |
-<!-- Test passes if you see RUNIN between list marker and ABCD. All text should be of same 40px size. --> |
-<html> |
-<body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> |
+<html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> |
+<!-- Test passes if you see RUNIN, followed by list marker and ABCD. All text should be of same 50px size. --> |
<style> |
li:before { content: "AB"; } |
</style> |
<div style="display: run-in; color: green">RUNIN</div> |
-<li style="color: blue">CD</li> |
+<li style="color: orange">CD</li> |
<script> |
document.body.offsetTop; |
-document.body.style.fontSize = "40px"; |
+document.body.style.fontSize = "50px"; |
</script> |
</body> |
</html> |