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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/invalidation-after-opacity-change-subtree.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/invalidation-after-opacity-change-subtree.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/invalidation-after-opacity-change-subtree.html b/third_party/WebKit/LayoutTests/fast/repaint/invalidation-after-opacity-change-subtree.html
deleted file mode 100644
index cb19e4410fe769b1b322e22c59719bdfdc04ac42..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/invalidation-after-opacity-change-subtree.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!doctype html>
-<style>
-#container {
- opacity: 0;
- font: 10px/1 Ahem;
-}
-
-#absolute {
- position: absolute;
- top: 2000px;
- font: 50px/1 Sherif;
-}
-</style>
-<div id="container">
- <div id="absolute">
- <p>This test checks that switching opacity invalidates the full subtree.</p>
- <p>This text should be visible in the output.</p>
- </div>
-</div>
-<script src="resources/text-based-repaint.js"></script>
-<script>
-
-function repaintTest() {
- window.scrollTo(0, 2000);
- container.style.opacity = "1";
-};
-runRepaintAndPixelTest();
-</script>

Powered by Google App Engine
This is Rietveld 408576698