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

Unified Diff: LayoutTests/fast/regions/region-element-dynamic-attach-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/region-element-dynamic-attach-flow.html
diff --git a/LayoutTests/fast/regions/region-element-dynamic-attach-flow.html b/LayoutTests/fast/regions/region-element-dynamic-attach-flow.html
deleted file mode 100644
index 2fd4e1cf594151425eb7e1ccf2cce2dea37ac95e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-element-dynamic-attach-flow.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- .region
- {
- -webkit-flow-from: no_flow;
- }
- </style>
- </head>
- <body>
- <p>Tests that changing the element into a region without an existing flow disconnects the element's content.</p>
- <div id="region_without_flow">
- <div id="region_content">This text should not be visible when the element becomes a region.</div>
- </div>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
- var region = document.getElementById("region_without_flow");
- // The element is not a region yet, it has content.
- var pass = region.innerText.length != 0;
- // The element becomes a region, its content gets disconnected.
- region.className = "region";
- pass &= region.innerText.length == 0;
- document.write("<p>" + pass ? "PASS" : "FAIL" + "</p>");
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698