Index: LayoutTests/fast/regions/cssom/offsetParent-in-flow-thread.html |
diff --git a/LayoutTests/fast/regions/cssom/offsetParent-in-flow-thread.html b/LayoutTests/fast/regions/cssom/offsetParent-in-flow-thread.html |
deleted file mode 100644 |
index 50883fcbad87114b6080be9ef52d12b609522ecd..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/cssom/offsetParent-in-flow-thread.html |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-<!doctype html> |
-<html> |
- <head> |
- <script src="../../../resources/js-test.js"></script> |
- </head> |
- <body> |
- <script> |
- description("Test offsetParent for elements inside a named flow.") |
- |
- var article = document.createElement("div"); |
- document.body.appendChild(article); |
- article.style.webkitFlowInto = "flow"; |
- 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"); |
- </script> |
- </body> |
-</html> |
- |