OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 .container { -webkit-column-count: 1; -webkit-flow-into: flow; } | |
6 .columnSpan { -webkit-column-span: all; } | |
7 .flow { -webkit-flow-from: flow; width: 100px; height: 100px; } | |
8 </style> | |
9 </head> | |
10 <body> | |
11 <div class="container"> | |
12 <div id="test"> | |
13 <div class="columnSpan"></div> | |
14 </div> | |
15 </div> | |
16 <script> | |
17 if (window.testRunner) | |
18 testRunner.dumpAsText(); | |
19 var test = document.getElementById("test"); | |
20 test.innerHTML = "Bug 90865:[CSSRegions]Crash when moving anonymous block ch
ildren inside a named flow.\ | |
21 Test passes if it does not CRASH or ASSERT."; | |
22 var article = document.createElement("div"); | |
23 article.setAttribute("class", "flow"); | |
24 document.body.appendChild(article); | |
25 </script> | |
26 </body> | |
27 </html> | |
OLD | NEW |