OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- PASS on one line, followed by EFABCD on the second line. All text should be
of same size 40 px. --> | 2 <!-- PASS on one line, followed by EFABCD on the second line. All text should be
of same size 40 px. --> |
3 <html> | 3 <html> |
4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> | 4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> |
5 <style> | 5 <style> |
6 #target:before { | 6 #target:before { |
7 content: "PASS"; | 7 content: "PASS"; |
8 display: run-in; | 8 display: run-in; |
9 color: green; | 9 color: green; |
10 } | 10 } |
11 span:before { | 11 span:before { |
12 content: "EF"; | 12 content: "EF"; |
13 } | 13 } |
14 </style> | 14 </style> |
15 <div id="target" style="color: blue"> | 15 <div id="target" style="color: blue"> |
16 <span style="float: left">AB</span> | 16 <span style="float: left">AB</span> |
17 <div id="inner">CD</div> | 17 <div id="inner">CD</div> |
18 </div> | 18 </div> |
19 <script> | 19 <script> |
20 document.body.offsetTop; | 20 document.body.offsetTop; |
21 document.body.style.fontSize = "40px"; | 21 document.body.style.fontSize = "40px"; |
22 </script> | 22 </script> |
23 </body> | 23 </body> |
24 </html> | 24 </html> |
OLD | NEW |