Index: third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint-expected.html b/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint-expected.html |
deleted file mode 100644 |
index 08cbbda1761f49a0c5a5eddf02366d1f56330be6..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint-expected.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
-#container { |
- overflow: scroll; |
- width: 500px; |
- height: 400px; |
- |
- background-attachment: local; |
- background-image: linear-gradient(black, white); |
-} |
- |
-#bloat { |
- position: relative; |
- left: 0; |
- top: 10000px; |
- width: 1px; |
- height: 1px; |
-} |
-</style> |
-<div id="container"> |
- <div id="bloat"></div> |
-</div> |
-This test verifies a overflow clip container with background-attachment:local correctly repaints when its overflow changes size without scrolling. |