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

Side by Side Diff: LayoutTests/fast/regions/flows-dependency-same-flow.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <!DOCTYPE HTML>
2
3 <style>
4 body { -webkit-margin-collapse: separate; }
5
6 .flowA { -webkit-flow-into: flowA; }
7 .flowB { -webkit-flow-into: flowB; }
8 .flowC { -webkit-flow-into: flowC; }
9
10 .regionFlowA { -webkit-flow-from: flowA; }
11 .regionFlowB { -webkit-flow-from: flowB; }
12 .regionFlowC { -webkit-flow-from: flowC; }
13
14 .regionFlowA, .regionFlowB, .regionFlowC { width: 0px; height: 0px; }
15 </style>
16
17 <div class="flowA">
18 <!-- The following region should be ignored. Direct circular reference. -->
19 <div class="regionFlowA"></div>
20 </div>
21
22 <div class="flowB">
23 <div class="regionFlowC"></div>
24 <!-- The following region should be ignored. Direct circular reference. -->
25 <div class="flowC regionFlowC"></div>
26 </div>
27
28 <div class="flowC">
29 <!-- The following region should be invalid. Circular reference through flow B which already has created a link to this flow
30 through the "regionFlowC index1" region. -->
31 <div class="regionFlowB"></div>
32 <div class="regionFlowA"></div>
33 </div>
34
35 <!-- Force the creation of the flows. In the future we might avoid creating flow s if there are no reachable regions. -->
36 <div class="regionFlowA"></div>
37 <div class="regionFlowB"></div>
38 <div class="regionFlowC"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698