Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/overflow-hidden-in-overflow-hidden-scrolled.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/paint/invalidation/spv2/overflow-hidden-in-overflow-hidden-scrolled.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/overflow-hidden-in-overflow-hidden-scrolled.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/overflow-hidden-in-overflow-hidden-scrolled.html
deleted file mode 100644
index b37739f899839e8f8c11f310b563847a63957082..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/overflow-hidden-in-overflow-hidden-scrolled.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!-- Based on fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html -->
-<!DOCTYPE html>
-<html>
-<head>
- <link rel="stylesheet" href="../../../fast/repaint/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/paint-invalidation-test.js"></script>
- <script>
- function paintInvalidationTest()
- {
- window.location.hash = "#ucp";
- }
-
- function runTest()
- {
- document.getElementById("outer").scrollTop = 1000;
- runPaintInvalidationTest();
- }
- </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>

Powered by Google App Engine
This is Rietveld 408576698