Index: third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html |
deleted file mode 100644 |
index c95c10caf7ffcad04c97a9cc068126a65f553d24..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<style> |
-ul { |
- width: 978px; |
- position: absolute; |
- left: -2070px; |
-} |
- |
-li { |
- position: absolute; |
- left: -690px; |
-} |
- |
-#container { |
- height: 400px;; |
- position: relative; |
- overflow: hidden; |
-} |
-</style> |
-<body> |
-<div>This test checks that moving a positioned element with positioned children invalidates correctly.</div> |
-<div>The image below should be completely invalidated.</div> |
-<div id="container"> |
- <ul id="list"> |
- <li> |
- <img src="resources/apple.jpg"> |
- </li> |
- </ul> |
-</div> |
- |
-<script src="resources/text-based-repaint.js"></script> |
-<script> |
-function setUp() { |
- var elSlider = document.getElementById("list"); |
- elSlider.style.left = "590px"; |
- elSlider.offsetLeft; |
- |
- runRepaintTest(); |
-} |
- |
-function repaintTest() { |
- var elSlider = document.getElementById("list"); |
- elSlider.style.left = "690px"; |
-}; |
- |
-window.addEventListener("load", setUp, false); |
-</script> |
-</body></html> |