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 .columns | 6 .columns |
7 { | 7 { |
8 -webkit-column-count: 2; | 8 -webkit-column-count: 2; |
9 -webkit-column-span: all; | 9 -webkit-column-span: all; |
10 } | 10 } |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 innerColumns = document.createElement('div'); | 31 innerColumns = document.createElement('div'); |
32 innerColumns.setAttribute('class', 'columns'); | 32 innerColumns.setAttribute('class', 'columns'); |
33 listChild.appendChild(innerColumns); | 33 listChild.appendChild(innerColumns); |
34 document.body.offsetTop; | 34 document.body.offsetTop; |
35 | 35 |
36 document.body.removeChild(outerColumns); | 36 document.body.removeChild(outerColumns); |
37 </script> | 37 </script> |
38 </body> | 38 </body> |
39 </html> | 39 </html> |
OLD | NEW |