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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/flows-dependency-same-flow.html
diff --git a/LayoutTests/fast/regions/flows-dependency-same-flow.html b/LayoutTests/fast/regions/flows-dependency-same-flow.html
deleted file mode 100644
index 7e4c79a10311efe214bcc3c65d9f103b446e899c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/flows-dependency-same-flow.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML>
-
-<style>
-body { -webkit-margin-collapse: separate; }
-
-.flowA { -webkit-flow-into: flowA; }
-.flowB { -webkit-flow-into: flowB; }
-.flowC { -webkit-flow-into: flowC; }
-
-.regionFlowA { -webkit-flow-from: flowA; }
-.regionFlowB { -webkit-flow-from: flowB; }
-.regionFlowC { -webkit-flow-from: flowC; }
-
-.regionFlowA, .regionFlowB, .regionFlowC { width: 0px; height: 0px; }
-</style>
-
-<div class="flowA">
- <!-- The following region should be ignored. Direct circular reference. -->
- <div class="regionFlowA"></div>
-</div>
-
-<div class="flowB">
- <div class="regionFlowC"></div>
- <!-- The following region should be ignored. Direct circular reference. -->
- <div class="flowC regionFlowC"></div>
-</div>
-
-<div class="flowC">
- <!-- The following region should be invalid. Circular reference through flowB which already has created a link to this flow
- through the "regionFlowC index1" region. -->
- <div class="regionFlowB"></div>
- <div class="regionFlowA"></div>
-</div>
-
-<!-- Force the creation of the flows. In the future we might avoid creating flows if there are no reachable regions. -->
-<div class="regionFlowA"></div>
-<div class="regionFlowB"></div>
-<div class="regionFlowC"></div>

Powered by Google App Engine
This is Rietveld 408576698