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

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: Implemented suggestions from esprehn 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 .region {
5 border:solid 1px red;
6 }
7 .redirectRegion {
8 border: solid 1px blue;
9 margin-top: 10px;
10 margin-bottom: 10px;
11 }
12 .redirectRegion2 {
13 border:solid 1px green;
14 }
15 </style>
16 </head>
17 <body>
18 <div class="region">PASS r0: content that goes in the region.</div>
19 <div class="redirectRegion">
20 <div>PASS r1: content in the region that has flow-into. 1.</div>
21 <div>PASS r1: (enclosed in a div) content in the region that has flo w-into. 2.
22 <b><br/>PASS r1: (b enclosed in the div above) content in the re gion that has flow-into. 3.</b>
23 </div>
24 <div>PASS r1: (enclosed in a div) content in the region that has flo w-into. 4.</div>
25 <div>PASS r1: content in the region that has flow-into. 5.</div>
26 </div>
27 <div class="redirectRegion2"><span>PASS r2: content that is already in a flow goes to another flow .</span></div>
28 <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>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698