Index: third_party/WebKit/LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling.html |
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling.html b/third_party/WebKit/LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling.html |
deleted file mode 100644 |
index f4fc20e1a2914ddc75a7a6fde7aae331afa29b8c..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling.html |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-<html> |
-<head> |
-<style> |
- #scroll { |
- width: 230px; |
- height: 230px; |
- overflow: scroll; |
- border: 1px solid black; |
- } |
- #container { |
- width:200px; |
- height:200px; |
- background-color:blue; |
- transform: rotate(180deg); |
- } |
- #spill { |
- width:100px; |
- height:100px; |
- background-color:green; |
- position:absolute; |
- top:-50px; |
- } |
-</style> |
-</head> |
- |
-<body> |
- |
- <p id="result"> |
- FAIL. The transform has not been applied to the scrollHeight. |
- </p> |
- |
- <div id="scroll"> |
- <div id="container"> |
- <div id="spill"></div> |
- </div> |
- </div> |
- |
- <script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- var scroll = document.getElementById("scroll"); |
- var scrollHeight = scroll.scrollHeight; |
- if (scrollHeight > 215) { |
- var result = document.getElementById("result"); |
- result.innerHTML = "SUCCESS! The transform was applied to the scrollHeight!"; |
- } |
- </script> |
-</body> |
-</html> |