OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- You should see green A, followed by orange ABCD, followed by blue EFGH and
green IJKL. None of these should be repeated and all should be of 40px size. --> | 2 <!-- You should see green A, followed by orange ABCD, followed by blue EFGH and
green IJKL. None of these should be repeated and all should be of 40px size. --> |
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 #test::before { | 6 #test::before { |
7 content: "EFGH"; | 7 content: "EFGH"; |
8 color: blue; | 8 color: blue; |
9 } | 9 } |
10 </style> | 10 </style> |
11 <div style="display: run-in; color: orange">ABCD</div><div id="test" style="colo
r: green"><div style="float:left">A</div>IJKL</div> | 11 <div style="display: run-in; color: orange">ABCD</div><div id="test" style="colo
r: green"><div style="float:left">A</div>IJKL</div> |
12 <script> | 12 <script> |
13 document.body.offsetTop; | 13 document.body.offsetTop; |
14 document.body.style.fontSize = "40px"; | 14 document.body.style.fontSize = "40px"; |
15 </script> | 15 </script> |
16 </body> | 16 </body> |
17 </html> | 17 </html> |
OLD | NEW |