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

Unified Diff: LayoutTests/fast/regions/cssom/webkit-named-flow-event-no-regions.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-event-no-regions.html
diff --git a/LayoutTests/fast/regions/cssom/webkit-named-flow-event-no-regions.html b/LayoutTests/fast/regions/cssom/webkit-named-flow-event-no-regions.html
deleted file mode 100644
index be69316aeb48e7cb8600a2642b14fcf65e1eb0e0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/webkit-named-flow-event-no-regions.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<script src="../../../resources/js-test.js"></script>
-<script src="../resources/helper.js"></script>
-<style>
-#article {
- -webkit-flow-into: article;
- border: 2px solid black;
-}
-#region_1, #region_2{
- -webkit-flow-from: no_article;
- overflow:hidden;
- display:inline-block;
- vertical-align:top;
- margin:10px;
-}
-.block {
- display:block;
-}
-#region_1, #region_2 { height:110px; width:200px; margin: 5px;}
-</style>
-</head>
-<body>
-<div id="article">
- <div>
- <div id="content" style="height: 200px; background-color: green;"></div>
- </div>
-</div>
-
-<div id="region_1"></div>
-<div id="container2">
- <div id="region_2"></div>
-</div>
-
-<script>
- description("Tests regionOversetChange being dispatched when the region chain is removed");
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- window.jsTestIsAsync = true;
- function flowContent(flowName) {
- var r = document.getElementById("region_1");
- r.style.webkitFlowFrom = flowName;
- r = document.getElementById("region_2");
- r.style.webkitFlowFrom = flowName;
- }
-
- function finishTest() {
- shouldBe("eventCount", "2");
- finishJSTest();
- }
-
- var eventCount = 0;
- function regionOversetChanged(event) {
- shouldBeEqualToString("event.target.name", "article");
- if (++eventCount > 1) {
- event.target.removeEventListener("webkitregionoversetchange", regionOversetChanged);
- finishTest();
- return;
- }
-
- debug("Removing region 1");
- var r = document.getElementById("region_1");
- r.style.webkitFlowFrom = "no-article";
- debug("Removing region 2");
- r = document.getElementById("region_2");
- r.style.webkitFlowFrom = "no-article";
- }
-
- function startTest() {
- var flow = getFlowByName("article");
- flow.addEventListener("webkitregionoversetchange", regionOversetChanged);
-
- debug("Flow content");
- flowContent("article");
- }
- window.addEventListener("load", startTest);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698