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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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/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>

Powered by Google App Engine
This is Rietveld 408576698