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

Unified Diff: third_party/WebKit/LayoutTests/fast/layers/scroll-descendant-with-cached-cliprects.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/layers/scroll-descendant-with-cached-cliprects.html
diff --git a/third_party/WebKit/LayoutTests/fast/layers/scroll-descendant-with-cached-cliprects.html b/third_party/WebKit/LayoutTests/fast/layers/scroll-descendant-with-cached-cliprects.html
deleted file mode 100644
index 2b6d18b4e8b2ee1f6f7f17a22ad99fb38583a3dc..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/layers/scroll-descendant-with-cached-cliprects.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<script>
- if (window.testRunner) {
- window.enablePixelTesting = true;
- window.testRunner.waitUntilDone();
- }
- function repaintTest() {
- window.scrollBy(0,200);
- document.getElementById("scrollpanel").style.position = "fixed";
- }
-</script>
-<script type="text/javascript" src="../repaint/resources/text-based-repaint.js"></script>
-<script type="text/javascript" src="../../resources/run-after-layout-and-paint.js"></script>
-<style>
- .left {
- float: left;
- min-height: 1843px;
- }
-
- .right {
- float: right;
- width: 100px;
- }
-
- .container {
- position: relative;
- overflow: hidden;
- }
-
- #ul {
- position: relative;
- }
-
- #scrollpanel {
- position: inherit;
- }
-</style>
-<body onload="runAfterLayoutAndPaint(runRepaintTest);">
- <p> When you scroll down the red square should have no painting glitches. </p>
- <div class="left"></div>
- <div class="right">
- <div id="scrollpanel">
- <div class="container">
- <div id="ul">
- <div style="background-color: red; width: 100px; height:100px;"></div>
- </div>
- </div>
-
- </div>
- </div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698