OLD | NEW |
1 <html> | 1 <html> |
2 Test passes if it does not crash. | 2 Test passes if it does not crash. |
3 <style> | 3 <style> |
4 .div2 { float: none; width: 100px; } | 4 .div2 { float: none; width: 100px; } |
5 .div2:nth-last-child(odd) { float: right; } | 5 .div2:nth-last-child(odd) { float: right; } |
6 .span1 { float: right; height: 100px; } | 6 .span1 { float: right; height: 100px; } |
7 .td1 { height: 100px; } | 7 .td1 { height: 100px; } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 document.body.appendChild(div3); | 45 document.body.appendChild(div3); |
46 | 46 |
47 document.body.offsetTop; | 47 document.body.offsetTop; |
48 span2.appendChild(span1); | 48 span2.appendChild(span1); |
49 document.createElement("span").appendChild(span2); | 49 document.createElement("span").appendChild(span2); |
50 } | 50 } |
51 | 51 |
52 window.onload = runTest; | 52 window.onload = runTest; |
53 </script> | 53 </script> |
54 </html> | 54 </html> |
OLD | NEW |