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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.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/positioned-list-offset-change-repaint.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html
deleted file mode 100644
index c95c10caf7ffcad04c97a9cc068126a65f553d24..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<style>
-ul {
- width: 978px;
- position: absolute;
- left: -2070px;
-}
-
-li {
- position: absolute;
- left: -690px;
-}
-
-#container {
- height: 400px;;
- position: relative;
- overflow: hidden;
-}
-</style>
-<body>
-<div>This test checks that moving a positioned element with positioned children invalidates correctly.</div>
-<div>The image below should be completely invalidated.</div>
-<div id="container">
- <ul id="list">
- <li>
- <img src="resources/apple.jpg">
- </li>
- </ul>
-</div>
-
-<script src="resources/text-based-repaint.js"></script>
-<script>
-function setUp() {
- var elSlider = document.getElementById("list");
- elSlider.style.left = "590px";
- elSlider.offsetLeft;
-
- runRepaintTest();
-}
-
-function repaintTest() {
- var elSlider = document.getElementById("list");
- elSlider.style.left = "690px";
-};
-
-window.addEventListener("load", setUp, false);
-</script>
-</body></html>

Powered by Google App Engine
This is Rietveld 408576698