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> |
- |