Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: LayoutTests/fast/regions/detaching-regions-with-anonymous-blocks.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698