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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/subtree-root-skipped.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/subtree-root-skipped.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/subtree-root-skipped.html b/third_party/WebKit/LayoutTests/fast/repaint/subtree-root-skipped.html
deleted file mode 100644
index 0822702b50b4722245253843de5c9771ca3b475e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/subtree-root-skipped.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<head>
- <title>Repaint test for bug 16034</title>
- <script src="resources/text-based-repaint.js" type="text/javascript"></script>
- <script>
- function repaintTest()
- {
- var input = document.getElementById("input");
- input.value = "PASS";
- var div = document.getElementById("div");
- div.style.height = "20px";
- }
- </script>
-</head>
-<body onload="runRepaintAndPixelTest()">
- <div style="overflow: hidden; height: 300px; width: 300px; background-color: aliceblue; position: relative;">
- <div style="overflow: hidden; height: 200px; width: 200px; background-color: silver;">
- <input id="input" value="FAIL">
- <div id="selection">Selection is here</div>
- <div id="div" style="position: absolute; bottom: 0; height: 10px; width: 10px; background-color: lightblue;"></div>
- </div>
- </div>
- <script>
- var selection = document.getElementById("selection");
- getSelection().setBaseAndExtent(selection, 0, selection, 0);
- </script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698