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

Side by Side Diff: LayoutTests/fast/regions/svg-root-element-collected.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 #region {
6 -webkit-flow-from: thread;
7 width: 100px;
8 height: 100px;
9 }
10 </style>
11 </head>
12 <body>
13 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=73735">73735</a> : Collect SVG nodes in render flow thread</p>
14 <p>It should be possible to collect a root "svg" node into a render flow thread.</p>
15 <p>On success, you should see PASS below.</p>
16 <svg xmlns="http://www.w3.org/2000/svg" style="-webkit-flow-into:thread" >
17 <text x="0" y="15">SVG text</text>
18 </svg>
19 <div id="region"></div>
20 <script>
21 if (window.testRunner)
22 window.testRunner.dumpAsText();
23 var regionElement = document.getElementById("region");
24 var pass = regionElement.innerText.length != 0;
25 regionElement.style.display = "none";
26 document.write("<p>" + pass ? "PASS" : "FAIL" + "</p>");
27 </script>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698