OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <head> | |
3 <style> | |
4 #content { -webkit-flow-into: flow; } | |
5 .region { -webkit-flow-from: flow; border:2px solid black; margin:1em 0} | |
6 .finished #content, .finished .region { display: none; } | |
7 | |
8 #region1 { width: 200px; height: 30px; } | |
9 #region2 { width: 200px; height: 50px; } | |
10 #region3 { width: 200px; height: 50px; } | |
11 #region4 { width: 200px; height: 50px; } | |
12 </style> | |
13 </head> | |
14 <div id="content"> | |
15 <p style="-webkit-region-break-after: always"><b class="check region2">Text
in region 2.</b> This paragraph has "<i>-webkit-region-break-after: always</i>".
<b class="check region3">There should be nothing in this region after this line
.</b></p> | |
16 | |
17 </div> | |
18 | |
19 <div id="region1" class="region"></div> | |
20 <div id="region2" class="region"></div> | |
21 <div id="region3" class="region"></div> | |
22 <div id="region4" class="region"></div> | |
OLD | NEW |