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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.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-scroll-after-move.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html b/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html
deleted file mode 100644
index 7cbf27f6607084b98ba47c2f1f695ddbf0f7c903..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="resources/text-based-repaint.js"></script>
-<style>
-
-#scroller {
- position: absolute;
- left: 10px;
- top: 60px;
- height: 400px;
- overflow: scroll;
- width: 300px;
- will-change: transform;
-}
-#block {
- background-color: #cef;
- height: 50px;
- left: 50px;
- position: absolute;
- top: 200px;
- width: 200px;
-}
-
-</style>
-</head>
-<body onload="runRepaintAndPixelTest()">
-
-This tests that an element which is moved by the synchronous layout in
-Element::setScrollTop, and again by the scroll itself, has its original
-location correctly invalidated.
-
-<div id="scroller">
- <div style="height: 900px"></div>
- <div id="block"></div>
-</div>
-<script>
-
-function repaintTest()
-{
- document.querySelector("#block").style.top = '310px';
- document.querySelector("#scroller").scrollTop = 150;
-}
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698