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

Side by Side Diff: LayoutTests/fast/regions/move-anonymous-block-inside-named-flow-crash.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 <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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698