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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/table-overflow-scroll-in-overflow-scroll-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/table-overflow-scroll-in-overflow-scroll-scrolled.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled.html b/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled.html
deleted file mode 100644
index 627bad0f9d8392ef86cacc513f06574fe98e5b67..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script src="resources/text-based-repaint.js" type="text/javascript"></script>
- <script>
- function repaintTest() {
- // Now scroll once in the #innerDiv to the green area.
- if (window.eventSender)
- eventSender.mouseScrollBy(0, -10);
- }
- window.addEventListener("load", runRepaintAndPixelTest, 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 or PURPLE, only green -->
-<div style="height: 300px; overflow-y: scroll;" id="outerDiv">
- <div style="height: 300px; background: purple;"></div>
- <div style="height: 400px; overflow-y: scroll;" id="innerDiv">
- <table>
- <tr><td style="height: 400px; width: 300px; background: red"></td></tr>
- <tr><td style="height: 400px; width: 300px; background: green"></td></tr>
- </table>
- </div>
-</div>
-<script>
-if (window.eventSender) {
- testRunner.dumpAsTextWithPixelResults();
-
- if (window.internals)
- internals.settings.setScrollAnimatorEnabled(false);
-
- // Scroll the #outerDiv until we reach the #innerDiv.
- eventSender.mouseMoveTo(50, 50);
- eventSender.mouseScrollBy(0, -8);
-} else {
- document.write("This test is better run under DumpRenderTree. To manually test it, continuously scroll down on the top-most element. There should be no repaint issue.");
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698