| #test1 { -webkit-column-count: 2; } |
| #test4 { -webkit-column-span: all; } |
| window.onload = function() { |
| test1 = document.createElement('div'); |
| test1.setAttribute('id', 'test1'); |
| document.body.appendChild(test1); |
| test2 = document.createElement('div'); |
| test3 = document.createElement('div'); |
| test1.appendChild(test2); |
| test1.appendChild(test3); |
| test4 = document.createElement('div'); |
| test4.setAttribute('id', 'test4'); |
| test1.appendChild(test4); |
| test4.style.display = 'table-footer-group'; |
| test3.style.display = 'table-row'; |
| test3.style.display = 'table-column-group'; |
| test3.style.display = 'table-row'; |
| test2.style.display = 'inline'; |
| Test passes if it does not crash. |