tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / regions / flows-dependency-same-flow.html
1 <!DOCTYPE HTML>
2
3 <style>
4 .flowA { -webkit-flow-into: flowA; }
5 .flowB { -webkit-flow-into: flowB; }
6 .flowC { -webkit-flow-into: flowC; }
7
8 .regionFlowA { -webkit-flow-from: flowA; }
9 .regionFlowB { -webkit-flow-from: flowB; }
10 .regionFlowC { -webkit-flow-from: flowC; }
11 </style>
12
13 <div class="flowA">
14     <!-- The following region should be ignored. Direct circular reference. -->
15     <div class="regionFlowA"></div>
16 </div>
17
18 <div class="flowB">
19     <div class="regionFlowC"></div>
20     <!-- The following region should be ignored. Direct circular reference. -->
21     <div class="flowC regionFlowC"></div>
22 </div>
23
24 <div class="flowC">
25     <!-- The following region should be invalid. Circular reference through flowB which already has created a link to this flow
26          through the "regionFlowC index1" region. -->
27     <div class="regionFlowB"></div>
28     <div class="regionFlowA"></div>
29 </div>
30
31 <!-- Force the creation of the flows. In the future we might avoid creating flows if there are no reachable regions. -->
32 <div class="regionFlowA"></div>
33 <div class="regionFlowB"></div>
34 <div class="regionFlowC"></div>