OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html xmlns="http://www.w3.org/1999/xhtml"> | 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
4 <head id="head1" style="-webkit-writing-mode: horizontal-bt;"></head> | 4 <head id="head1" style="-webkit-writing-mode: horizontal-bt;"></head> |
5 <i id="i1"><button id="button1"></button></i> | 5 <i id="i1"><button id="button1"></button></i> |
6 <td id="td1"><body id="body2"></body></td> | 6 <td id="td1"><body id="body2"></body></td> |
7 <i id="i2"></i> | 7 <i id="i2"></i> |
8 <style> | 8 <style> |
9 .class1 { float: left; } | 9 .class1 { float: left; } |
10 </style> | 10 </style> |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 head1.style.display = "list-item"; | 34 head1.style.display = "list-item"; |
35 | 35 |
36 docElement.offsetTop; | 36 docElement.offsetTop; |
37 | 37 |
38 button1.classList.toggle("class1"); | 38 button1.classList.toggle("class1"); |
39 } | 39 } |
40 document.addEventListener("DOMContentLoaded", crash, false); | 40 document.addEventListener("DOMContentLoaded", crash, false); |
41 </script> | 41 </script> |
42 </html> | 42 </html> |
OLD | NEW |