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

Unified Diff: LayoutTests/fast/regions/cssom/get-region-flow-ranges-fixed-pos.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/get-region-flow-ranges-fixed-pos.html
diff --git a/LayoutTests/fast/regions/cssom/get-region-flow-ranges-fixed-pos.html b/LayoutTests/fast/regions/cssom/get-region-flow-ranges-fixed-pos.html
deleted file mode 100644
index 0624ba679d9114bf15ab41f22b4ae683d54eb12d..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/get-region-flow-ranges-fixed-pos.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-<script src="../resources/helper.js"></script>
-<style>
- .border { border: 1px solid red; }
- #box1 { -webkit-flow-into: flow; position: fixed; width: 50px; height: 50px; background-color: green; top: 25px; left: 25px; }
- #region1 { -webkit-flow-from: flow; width: 100px; height: 100px; position: absolute; top: 100px; left: 50px; }
-</style>
-</head>
-<body>
- <div id="description"></div>
- <div id="wrapper"><div id="box1"></div></div>
- <div id="region1" class="border"></div>
-<script>
- if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
- debug("[CSSRegions] Test for Region::getRegionFlowRanges for fixed positioned elements");
- var region1 = document.getElementById("region1");
- range1 = region1.webkitGetRegionFlowRanges();
- shouldEvaluateTo("range1.length", 1);
- compareArrays(getRangeAt(range1, 0), ["wrapper", 0, "wrapper", 1]);
-
-function hideRegionsAndFlows() {
- document.getElementById("region1").style.visibility = "hidden";
-}
- hideRegionsAndFlows();
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698