OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body> |
3 <style type="text/css"> | 3 <style type="text/css"> |
4 div::first-letter { float: right; content: "AB" } | 4 div::first-letter { float: right; content: "AB" } |
5 div::after { display: table; content: "CD" } | 5 div::after { display: table; content: "CD" } |
6 </style> | 6 </style> |
7 <div></div> | 7 <div></div> |
8 PASS, if the script does not cause a crash or ASSERT failure | 8 PASS, if the script does not cause a crash or ASSERT failure |
9 <script> | 9 <script> |
10 function runTest() { | 10 function runTest() { |
11 document.body.offsetTop; | 11 document.body.offsetTop; |
12 document.body.style.color = "blue"; | 12 document.body.style.color = "blue"; |
13 if (window.layoutTestController) | 13 if (window.layoutTestController) |
14 layoutTestController.dumpAsText(); | 14 layoutTestController.dumpAsText(); |
15 } | 15 } |
16 window.onload = runTest; | 16 window.onload = runTest; |
17 </script> | 17 </script> |
18 </body> | 18 </body> |
19 </html> | 19 </html> |
OLD | NEW |