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

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

Issue 2327223002: Move all remaining fast/repaint tests 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/table-overflow-hidden-in-overflow-hidden-scrolled.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled.html b/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled.html
deleted file mode 100644
index cc2f7bdb4b95734ac0385ab6952fa8ea7289ae6f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled.html
+++ /dev/null
@@ -1,66 +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>
- if (window.testRunner) {
- testRunner.dumpAsTextWithPixelResults();
- testRunner.waitUntilDone();
- }
-
- function repaintTest()
- {
- window.location.hash = "#ucp";
- if (window.testRunner)
- testRunner.notifyDone();
- }
-
- function runTest()
- {
- document.getElementById("outer").scrollTop = 1000;
- setTimeout(repaintTest, 0);
- }
- window.addEventListener("load", runTest, false);
- </script>
-</head>
-<body>
- <!-- 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>
- <table id="ucp" class="green"><td style="height: 190px"></td></table>
- </div>
- </section>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698