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

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

Issue 18080016: [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: 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..f456cb3b167cd08f68ff42b9c2d595092887d977
--- /dev/null
+++ b/LayoutTests/fast/regions/region-content-flown-into-region-expected.html
@@ -0,0 +1,33 @@
+<html>
+ <head>
+ <style type="text/css">
+ div {
+ padding: 1px;
+ }
+ .region {
+ border:solid 1px red;
+ }
+ .redirectRegion {
+ border: solid 1px blue;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ }
+ .redirectRegion2 {
+ border:solid 1px green;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="region"><template>PASS r0: content that goes in the region.</template></div>
esprehn 2013/06/28 20:29:36 <template> doesn't make sense like this, please re
+ <div class="redirectRegion">
+ <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><br/>PASS r1: (b enclosed in the div above) 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>
+ </div>
+ <div class="redirectRegion2"><span>PASS r2: content that is already in a flow goes to another flow .</span></div>
+ <p><a href="http://code.google.com/p/chromium/issues/detail?id=228566">Bug 228566</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