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

Unified Diff: LayoutTests/fast/regions/region-content-flown-into-region-expected.html

Issue 15027005: [CSS Regions] Elements in a region should be assignable to a named flow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Integrates all feedback. One of the tests causes an ASSERT in ContentShell because of Region Ranges. Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/region-content-flown-into-region-expected.html
diff --git a/LayoutTests/fast/regions/region-content-flown-into-region-expected.html b/LayoutTests/fast/regions/region-content-flown-into-region-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..85c38ebf6d731540563e849445e345e63771163a
--- /dev/null
+++ b/LayoutTests/fast/regions/region-content-flown-into-region-expected.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<html>
+ <head>
+ <style>
+ div {
+ padding: 1px;
+ }
+ .region {
+ border:solid 1px #bbb;
+ }
+ </style>
+ </head>
+ <body>
+ <p><a href="https://bugs.webkit.org/show_bug.cgi?id=74144">Bug 74144</a> - [CSS Regions] Elements in a region should be assignable to a named flow</p>
+ <div class="region"><template>PASS r0: content that goes in the region.</template></div>
+ <div class="region">
+ <div>PASS r1: content in the region that has flow-into. 1.</div>
+ <div>PASS r1: (enclosed in a div) content in the region that has flow-into. 2. <b>PASS r1: (enclosed in a div) content in the region that has flow-into. 3.</b>.</div>
+ <div>PASS r1: (enclosed in a div) content in the region that has flow-into. 4 .</div>
+ <div>PASS r1: content in the region that has flow-into. 5.</div>
+ <svg class="redirectContent" xmlns="http://www.w3.org/2000/svg" version="1.1" height="70">
+ <text x="0" y="15">PASS: SVG text</text>
+ <text x="0" y="30">PASS: SVG text redirected to a flow without regions. only svg root elements are directly collected by a render flow thread.</text>
+ <text x="0" y="45">PASS: SVG text redirected to a flow with regions. only svg root elements are directly collected by a render flow thread.</text>
+ </svg>
+ </div>
+ <div class="region"><span>PASS r2: content that is already in a flow goes to another flow .</span></div>
+ <p><a href="https://bugs.webkit.org/show_bug.cgi?id=74144">Bug 74144</a> - [CSS Regions] Elements in a region should be assignable to a named flow</p>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698