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

Side by Side 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, 5 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 <html>
2 <head>
3 <style type="text/css">
4 div {
5 padding: 1px;
6 }
7 .region {
8 border:solid 1px red;
9 }
10 .redirectRegion {
11 border: solid 1px blue;
12 margin-top: 10px;
13 margin-bottom: 10px;
14 }
15 .redirectRegion2 {
16 border:solid 1px green;
17 }
18 </style>
19 </head>
20 <body>
21 <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
22 <div class="redirectRegion">
23 <div>PASS r1: content in the region that has flow-into. 1.</div>
24 <div>PASS r1: (enclosed in a div) content in the region that has flo w-into. 2.
25 <b><br/>PASS r1: (b enclosed in the div above) content in the re gion that has flow-into. 3.</b>
26 </div>
27 <div>PASS r1: (enclosed in a div) content in the region that has flo w-into. 4.</div>
28 <div>PASS r1: content in the region that has flow-into. 5.</div>
29 </div>
30 <div class="redirectRegion2"><span>PASS r2: content that is already in a flow goes to another flow .</span></div>
31 <p><a href="http://code.google.com/p/chromium/issues/detail?id=228566">B ug 228566</a> - [CSS Regions] Elements in a region should be assignable to a nam ed flow</p>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698