Index: third_party/WebKit/LayoutTests/compositing/repaint/requires-backing-repaint.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/requires-backing-repaint.html b/third_party/WebKit/LayoutTests/compositing/repaint/requires-backing-repaint.html |
deleted file mode 100644 |
index 2c68615bb0cac5a7ee4464b86202165c8863025f..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/compositing/repaint/requires-backing-repaint.html |
+++ /dev/null |
@@ -1,67 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<html> |
-<head> |
- <script src="../../resources/run-after-layout-and-paint.js"></script> |
- <style> |
- .bar { |
- width: 200px; |
- height: 50px; |
- margin-left: 50px; |
- background-color: gray; |
- transform: translateZ(0); |
- } |
- |
- #overflow { |
- position: absolute; |
- top: 70px; |
- left: 100px; |
- z-index: 100; |
- height: 200px; |
- width: 200px; |
- border: 1px solid black; |
- overflow: scroll; |
- } |
- |
- #overflow > div { |
- position: relative; |
- height: 50px; |
- width: 100%; |
- border: 2px solid black; |
- margin: 2px; |
- } |
- |
- </style> |
- <script> |
- if (window.testRunner) { |
- testRunner.dumpAsTextWithPixelResults(); |
- testRunner.waitUntilDone(); |
- } |
- |
- function doTest() |
- { |
- var overflow = document.getElementById('overflow'); |
- overflow.scrollTop = 50; |
- |
- runAfterLayoutAndPaint(function() { |
- overflow.scrollTop = 75; |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- }); |
- } |
- window.addEventListener('load', doTest, false); |
- </script> |
-</head> |
-<body> |
- |
- <div class="bar"></div> |
- |
- <div id="overflow"> |
- <div></div> |
- <div></div> |
- <div></div> |
- <div></div> |
- <div></div> |
- </div> |
-</body> |
-</html> |