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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/repaint-svg-after-style-change.html

Issue 2327223002: Move all remaining fast/repaint tests 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/repaint-svg-after-style-change.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/repaint-svg-after-style-change.html b/third_party/WebKit/LayoutTests/fast/repaint/repaint-svg-after-style-change.html
deleted file mode 100644
index ffb03c8c56291e7cddbe4166be00d2fde3931963..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/repaint-svg-after-style-change.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>SVG failing to repaint</title>
-</head>
-<body>
-<svg width="201px" height="201px">
- <g>
- <path fill="red" fill-opacity="1" d="M 0 0 L 0 200 200 200 200 0 Z"></path>
- <path id="blinker" fill="green" fill-opacity="1" d="M 00 00 L 00 200 200 200 200 00 Z" style=""></path>
- </g>
-</svg>
-</div>
-
-<script type='text/javascript'>
-var blinker = document.getElementById('blinker');
-
-if (window.testRunner)
- window.testRunner.waitUntilDone();
-
-window.setTimeout(function () {
- blinker.style.display = 'none';
- window.setTimeout(function () {
- blinker.style.display = '';
- if (window.testRunner)
- window.testRunner.notifyDone();
- }, 50);
-}, 50);
-
-
-
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698