Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / regions / webkit-flow-renderer-nested.html
1 <!DOCTYPE HTML>
2
3 <style>
4 #DIV1, #DIV3 { -webkit-flow-into:flowA; }
5 #DIV2 { -webkit-flow-into:flowB; }
6
7 #REGION1, #REGION2 {
8     width: 100%;
9     height: 100px;
10 }
11 #REGION1 { -webkit-flow-from: flowA; }
12 #REGION2 { -webkit-flow-from: flowB; }
13 </style>
14
15 <div id="DIV1">
16     DIV1 - flowA
17     <div id="DIV2">DIV2 - flowB</div>
18     <p>
19         <div id="DIV3">DIV3 - flowA</div>
20     </p>
21 </div>
22
23 <!-- Make some regions, so that the flow has a size and it's visible in the render tree. -->
24 <div id="REGION1"></div>
25 <div id="REGION2"></div>