| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
| 4 <style> | 4 <style> |
| 5 .class1 { -webkit-column-span: all; } | 5 .class1 { -webkit-column-span: all; } |
| 6 .class2 { -webkit-column-width: 1px; } | 6 .class2 { -webkit-column-width: 1px; } |
| 7 .class3 { display: inline-block; } | 7 .class3 { display: inline-block; } |
| 8 .class4 { section; -webkit-column-span: all; } | 8 .class4 { section; -webkit-column-span: all; } |
| 9 </style> | 9 </style> |
| 10 <script> | 10 <script> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 div1.appendChild(div4); | 29 div1.appendChild(div4); |
| 30 document.documentElement.offsetTop; | 30 document.documentElement.offsetTop; |
| 31 div1.setAttribute('class', 'class2'); | 31 div1.setAttribute('class', 'class2'); |
| 32 div4.appendChild(div3); | 32 div4.appendChild(div3); |
| 33 document.documentElement.offsetTop; | 33 document.documentElement.offsetTop; |
| 34 i3.appendChild(div3); | 34 i3.appendChild(div3); |
| 35 } | 35 } |
| 36 window.onload = crash; | 36 window.onload = crash; |
| 37 </script> | 37 </script> |
| 38 </html> | 38 </html> |
| OLD | NEW |