OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 | |
5 <script type="text/javascript"> | |
6 if(window.testRunner) | |
7 window.testRunner.dumpAsText(); | |
8 | |
9 window.addEventListener("load",function(){ | |
10 // This previously caused the ASSERT to be hit. | |
11 var parentNode = document.body.parentNode; | |
12 parentNode.removeChild(document.body); | |
13 | |
14 // Display the human readable test result. | |
15 var body = document.createElement("body"); | |
16 parentNode.appendChild(body); | |
17 body.innerHTML = "<p>Bug <a href=\"https://bugs.webkit.org/show_
bug.cgi?id=104517\">104517</a>: [CSSRegions] Assertion failure in Node::detach (
!renderer || renderer->inRenderFlowThread())</p> <p>This test PASSES if it does
not CRASH or ASSERT.</p>"; | |
18 }); | |
19 </script> | |
20 | |
21 </head> | |
22 | |
23 <body> | |
24 <div style="-webkit-flow-into: flow;"> | |
25 <span> | |
26 a <p>b</p> a | |
27 </span> | |
28 </div> | |
29 <div id="region" style="-webkit-flow-from:flow;"></div> | |
30 </body> | |
31 </html> | |
OLD | NEW |