| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 Test passes if it does not crash. | 4 Test passes if it does not crash. |
| 5 <style> | 5 <style> |
| 6 .caption1 { -webkit-column-width: 1px; } | 6 .caption1 { -webkit-column-width: 1px; } |
| 7 .div1 { position: absolute; } | 7 .div1 { position: absolute; } |
| 8 .keygen1:nth-last-child(even) { display: block; -webkit-column-span: all; } | 8 .keygen1:nth-last-child(even) { display: block; -webkit-column-span: all; } |
| 9 .flexbox1 { display: -webkit-flexbox; padding-right: 10px; -webkit-transform: ro
tate3d(0, 1, 0, 90deg); } | 9 .flexbox1 { display: -webkit-flexbox; padding-right: 10px; transform: rotate3d(0
, 1, 0, 90deg); } |
| 10 </style> | 10 </style> |
| 11 <script> | 11 <script> |
| 12 if (window.testRunner) | 12 if (window.testRunner) |
| 13 testRunner.dumpAsText(); | 13 testRunner.dumpAsText(); |
| 14 | 14 |
| 15 function runTest() { | 15 function runTest() { |
| 16 caption1 = document.createElement('caption'); | 16 caption1 = document.createElement('caption'); |
| 17 caption1.setAttribute('class', 'caption1'); | 17 caption1.setAttribute('class', 'caption1'); |
| 18 div1 = document.createElement('div'); | 18 div1 = document.createElement('div'); |
| 19 div1.setAttribute('class', 'div1'); | 19 div1.setAttribute('class', 'div1'); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 document.body.appendChild(caption1); | 32 document.body.appendChild(caption1); |
| 33 document.body.offsetTop; | 33 document.body.offsetTop; |
| 34 flexbox1.appendChild(div2); | 34 flexbox1.appendChild(div2); |
| 35 document.body.offsetTop; | 35 document.body.offsetTop; |
| 36 flexbox1.removeChild(div1); | 36 flexbox1.removeChild(div1); |
| 37 } | 37 } |
| 38 window.onload = runTest; | 38 window.onload = runTest; |
| 39 </script> | 39 </script> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |