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

Unified Diff: LayoutTests/fast/regions/cssom/offsetParent-body-in-flow-thread.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/offsetParent-body-in-flow-thread.html
diff --git a/LayoutTests/fast/regions/cssom/offsetParent-body-in-flow-thread.html b/LayoutTests/fast/regions/cssom/offsetParent-body-in-flow-thread.html
deleted file mode 100644
index bd9540bbbadf3ec67807b0d6a0fab4c3795d90c7..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/offsetParent-body-in-flow-thread.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <script src="../../../resources/js-test.js"></script>
- </head>
-
- <style>
-
- #region {
- -webkit-flow-from: flow;
- }
-
- </style>
-
- <body>
- <script>
- description("Test offsetParent for body in a named flow.")
-
- document.body.style.webkitFlowInto = "flow";
-
- var article = document.createElement("div");
- document.body.appendChild(article);
- shouldBe("article.offsetParent", "document.body");
-
- var chapter = document.createElement("div");
- article.appendChild(chapter);
- shouldBe("chapter.offsetParent", "document.body");
-
- article.style.position = "relative";
- shouldBe("chapter.offsetParent", "article");
-
- var table = document.createElement("table");
- document.body.appendChild(table);
-
- var td = document.createElement("td");
- table.appendChild(td);
-
- var tdChild = document.createElement("div");
- td.appendChild(tdChild);
- shouldBe("tdChild.offsetParent", "td");
-
- tdChild.style.webkitFlowInto = "flow";
- shouldBe("tdChild.offsetParent", "document.body");
-
- shouldBeNull("document.body.offsetParent");
-
- document.body.style.webkitFlowInto = null;
- </script>
-
- <div id="region"/>
- </body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698