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

Unified Diff: LayoutTests/fast/regions/flow-anonymous-children.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/flow-anonymous-children.html
diff --git a/LayoutTests/fast/regions/flow-anonymous-children.html b/LayoutTests/fast/regions/flow-anonymous-children.html
deleted file mode 100644
index 536c15271af9a5a80824c019674be064b71d036b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/flow-anonymous-children.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-
-<style>
-.flow { -webkit-flow-into: flow; }
-#region { -webkit-flow-from: flow; }
-span { display: inline-block; }
-</style>
-
-<span id="el1" class="flow"></span>
-<!-- Force creation of an anonymous block. -->
-<div class="flow"></div>
-<span id="el2"></span>
-
-<div id="region"></div>
-
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
- var el1 = document.getElementById("el1");
- var el2 = document.getElementById("el2");
- el1.style.display = "none";
- el2.className = "flow";
- // Test passes if there's no crash.
- document.write("PASS");
-</script>

Powered by Google App Engine
This is Rietveld 408576698