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

Side by Side Diff: LayoutTests/fast/regions/flows-dependency-dynamic-remove.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 <div class="regionFlowB"></div>
19 </div>
20
21 <div class="flowB">
22 <div class="regionFlowC"></div>
23 </div>
24
25 <div class="flowC">
26 <!-- The following region will initially be invalid. Removing regionFlowC sh ould make it valid again. -->
27 <div class="regionFlowA"></div>
28 </div>
29
30 <!-- Force the creation of the flows. In the future we might avoid creating flow s if there are no reachable regions. -->
31 <div class="regionFlowA"></div>
32
33 <script>
34 document.body.offsetTop; // force layout
35 var el = document.getElementsByClassName("regionFlowC")[0];
36 el.parentNode.removeChild(el);
37 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698