| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body> | |
| 4 Test passes if it does not crash. | |
| 5 <style> | |
| 6 .table_span { -webkit-column-span: all;} | |
| 7 .table_container { -webkit-column-count: 2; } | |
| 8 </style> | |
| 9 <script> | |
| 10 if (window.testRunner) | |
| 11 testRunner.dumpAsText(); | |
| 12 | |
| 13 document.body.offsetTop; | |
| 14 table_span = document.createElement('table'); | |
| 15 table_span.setAttribute('class', 'table_span'); | |
| 16 table_container = document.createElement('table'); | |
| 17 table_container.setAttribute('class', 'table_container'); | |
| 18 table_caption = document.createElement('caption'); | |
| 19 table_caption.appendChild(table_span); | |
| 20 table_container.appendChild(table_caption); | |
| 21 document.body.appendChild(table_container); | |
| 22 document.body.offsetTop; | |
| 23 | |
| 24 table_caption.parentNode.removeChild(table_caption); | |
| 25 </script> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |