Index: third_party/WebKit/LayoutTests/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html b/third_party/WebKit/LayoutTests/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html |
deleted file mode 100644 |
index 7f6056fa38cdc412bcaa290448fe22e133873ee7..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html |
+++ /dev/null |
@@ -1,59 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <link rel="stylesheet" href="resources/default.css"> |
- <style> |
- #outer { |
- position: relative; |
- overflow: hidden; |
- height: 200px; |
- } |
- |
- section { |
- padding: 192px 0 0 0; |
- width: 200px; |
- } |
- |
- div { |
- height: 190px; |
- } |
- |
- .innerWrapper { |
- overflow: hidden; |
- } |
- |
- .red { |
- background-color: red; |
- } |
- |
- .green { |
- background-color: green; |
- } |
- </style> |
- <script src="resources/text-based-repaint.js"></script> |
- <script> |
- function repaintTest() |
- { |
- window.location.hash = "#ucp"; |
- } |
- |
- function runTest() |
- { |
- document.getElementById("outer").scrollTop = 1000; |
- runRepaintAndPixelTest(); |
- } |
- </script> |
-</head> |
-<body onload="runTest()"> |
- <!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element being scrolled off page using javascript. --> |
- <!-- For the test to pass you should not see any RED, only green --> |
- <div id="outer"> |
- <section> |
- <div class="innerWrapper"> |
- <div class="red"></div> |
- <div id="ucp" class="green"></div> |
- </div> |
- </section> |
- </div> |
-</body> |
-</html> |