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

Unified Diff: LayoutTests/fast/regions/cssom/webkit-named-flow-name.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/cssom/webkit-named-flow-name.html
diff --git a/LayoutTests/fast/regions/cssom/webkit-named-flow-name.html b/LayoutTests/fast/regions/cssom/webkit-named-flow-name.html
deleted file mode 100644
index 16a4d04f43b4638abaaf2df6a12dd6e4175e2ed1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/webkit-named-flow-name.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<script src="../../../resources/js-test.js"></script>
-<script src="../resources/helper.js"></script>
-<style>
- .flow { -webkit-flow-into: flow-name; }
- .region { -webkit-flow-from: flow-name; }
- #region { width: 250px; height: 50px; }
-</style>
-</head>
-<body>
- <p id="article" class="flow">The content flow</p>
-<script>
-
-description("This tests the implementation of the 'name' attribute on the NamedFlow object attached to a flow thread. \
- For more details see http://www.w3.org/TR/2012/WD-css3-regions-20120503/#dom-named-flow");
-
-if (window.testRunner)
- testRunner.dumpAsText();
-
-// Flow article does not have any regions yet
-var namedFlow = getFlowByName("flow-name");
-
-// The name should be 'flow-name' when there are no regions to flow into
-shouldBe("namedFlow.name", "'flow-name'");
-
-// Add a region to take the content, the name should be the same
-var region = document.createElement("div");
-document.body.appendChild(region);
-region.id = "region";
-region.className = "region";
-
-// The name should be 'flow-name' when there are regions to flow into
-shouldBe("namedFlow.name", "'flow-name'");
-
-var article = document.getElementById("article");
-
-// Remove the flow and the region element, move the NamedFlow object in the NULL state
-region.className = "";
-article.className = "";
-region.style.display = "none";
-article.style.display = "none";
-
-// The name should be 'flow-name' when the named flow is in the NULL state
-shouldBe("namedFlow.name", "'flow-name'");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698