OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- Test passes if you see three blue boxes in three seperate rows. --> | 2 <!-- Test passes if you see three blue boxes in three seperate rows. --> |
3 <html style="font: 1em/1 Ahem, sans-serif;"> | 3 <html style="font: 1em/1 Ahem, sans-serif;"> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 .container:before | 5 .container:before |
6 { | 6 { |
7 content: "ABCD"; | 7 content: "ABCD"; |
8 display: table-row; | 8 display: table-row; |
9 } | 9 } |
10 | 10 |
11 .container:after | 11 .container:after |
12 { | 12 { |
13 content: "EFGH"; | 13 content: "EFGH"; |
14 display: table-row; | 14 display: table-row; |
15 } | 15 } |
16 | 16 |
17 </style> | 17 </style> |
18 </head> | 18 </head> |
19 <body> | 19 <body> |
20 <div class="container"> | 20 <div class="container"> |
21 <div style="display: block">1234</div> | 21 <div style="display: block">1234</div> |
22 </div> | 22 </div> |
23 <script> | 23 <script> |
24 document.body.offsetTop; | 24 document.body.offsetTop; |
25 document.body.style.color = 'blue'; | 25 document.body.style.color = 'blue'; |
26 </script> | 26 </script> |
27 </html> | 27 </html> |
OLD | NEW |