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

Unified Diff: LayoutTests/fast/regions/cssom/webkit-named-flow-event-auto-height.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-auto-height.html
diff --git a/LayoutTests/fast/regions/cssom/webkit-named-flow-event-auto-height.html b/LayoutTests/fast/regions/cssom/webkit-named-flow-event-auto-height.html
deleted file mode 100644
index 9c3d9af89d0290172ac7f99cf0e8913d23af89e4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/webkit-named-flow-event-auto-height.html
+++ /dev/null
@@ -1,88 +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: 10px solid black;
- }
- #region_1, #region_2 {
- -webkit-flow-from: no_article;
- overflow: hidden;
- display: inline-block;
- vertical-align: top;
- margin: 10px;
- height: auto;
- width: 200px;
- border: 1px solid red;
- padding: 5px;
- }
- .content {
- background-color: green;
- border: 3px dashed blue;
- }
- #part1 {
- height: 180px;
- }
- #part2 {
- -webkit-region-break-before: always;
- height: 160px;
- }
-</style>
-</head>
-<body>
- <div id="article">
- <div>
- <div id="part1" class="content"></div>
- <div id="part2" class="content"></div>
- </div>
- </div>
-
- <div id="region_1"></div>
- <div id="region_2"></div>
-
- <script>
-
- description("Tests the regionOversetChange event for regions with height:auto");
-
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
- window.jsTestIsAsync = true;
- function flowContent(flowName) {
- var region = document.getElementById("region_1");
- region.style.webkitFlowFrom = flowName;
- region = document.getElementById("region_2");
- region.style.webkitFlowFrom = flowName;
- }
-
- var eventFiredCount = 0;
- function finishTest() {
- shouldBe("eventFiredCount", "1");
- finishJSTest();
- }
-
- function regionOversetChanged(event) {
- ++eventFiredCount;
- shouldBeEqualToString("event.target.name", "article");
-
- // Wait and make sure no other events arrive.
- setTimeout("finishTest()", 200);
- }
-
- function startTest() {
- var flowThread = getFlowByName("article");
- flowThread.addEventListener("webkitregionoversetchange", regionOversetChanged);
-
- debug("Flowing content into regions...");
- flowContent("article");
- }
-
- window.addEventListener("load", startTest);
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698