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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/flows-dependency-dynamic-remove.html
diff --git a/LayoutTests/fast/regions/flows-dependency-dynamic-remove.html b/LayoutTests/fast/regions/flows-dependency-dynamic-remove.html
deleted file mode 100644
index b2a8a9a4b1cb562c85bca1947dcc743b3f9abad3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/flows-dependency-dynamic-remove.html
+++ /dev/null
@@ -1,37 +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">
- <div class="regionFlowB"></div>
-</div>
-
-<div class="flowB">
- <div class="regionFlowC"></div>
-</div>
-
-<div class="flowC">
- <!-- The following region will initially be invalid. Removing regionFlowC should make it valid again. -->
- <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>
-
-<script>
- document.body.offsetTop; // force layout
- var el = document.getElementsByClassName("regionFlowC")[0];
- el.parentNode.removeChild(el);
-</script>

Powered by Google App Engine
This is Rietveld 408576698