OLD | NEW |
| (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 <svg class="redirectContent" xmlns="http://www.w3.org/2000/svg" vers
ion="1.1" height="70"> | |
27 <text x="0" y="15">PASS: SVG text</text> | |
28 <text x="0" y="30">PASS: SVG text redirected to a flow without r
egions. only svg root elements are directly collected by a render flow thread.</
text> | |
29 <text x="0" y="45">PASS: SVG text redirected to a flow with regi
ons. only svg root elements are directly collected by a render flow thread.</tex
t> | |
30 </svg> | |
31 </div> | |
32 <div class="redirectRegion2"><span>PASS r2: content that is already in a
flow goes to another flow .</span></div> | |
33 <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> | |
34 </body> | |
35 </html> | |
OLD | NEW |