| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <style> | 3 <style> |
| 4 .colContainer { -webkit-column-count: 0; } | 4 .colContainer { -webkit-column-count: 0; } |
| 5 .absolutePosition { position: absolute; } | 5 .absolutePosition { position: absolute; } |
| 6 .colSpanAll { -webkit-column-span: all; } | 6 .colSpanAll { -webkit-column-span: all; } |
| 7 .transformed { -webkit-transform: rotate(45deg); } | 7 .transformed { transform: rotate(45deg); } |
| 8 .hidden { display:none; } | 8 .hidden { display:none; } |
| 9 .normal { display:block;} | 9 .normal { display:block;} |
| 10 </style> | 10 </style> |
| 11 <script> | 11 <script> |
| 12 | 12 |
| 13 window.onload = function() { | 13 window.onload = function() { |
| 14 columnContainerBlock = document.createElement('div'); | 14 columnContainerBlock = document.createElement('div'); |
| 15 columnContainerBlock.setAttribute('class', 'colContainer'); | 15 columnContainerBlock.setAttribute('class', 'colContainer'); |
| 16 document.documentElement.appendChild(columnContainerBlock); | 16 document.documentElement.appendChild(columnContainerBlock); |
| 17 | 17 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 43 splitBlockParent.removeChild(splitFlowDt); // Ensure the node with the bad p
ositioned object list gets layout. | 43 splitBlockParent.removeChild(splitFlowDt); // Ensure the node with the bad p
ositioned object list gets layout. |
| 44 | 44 |
| 45 if (window.testRunner) | 45 if (window.testRunner) |
| 46 testRunner.dumpAsText(); | 46 testRunner.dumpAsText(); |
| 47 } | 47 } |
| 48 </script> | 48 </script> |
| 49 <body> | 49 <body> |
| 50 PASS if no assert or crash in debug | 50 PASS if no assert or crash in debug |
| 51 </body> | 51 </body> |
| 52 </html> | 52 </html> |
| OLD | NEW |