Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/effect-reference-repaint-morphology-expected.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.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/LayoutTests/css3/filters/effect-reference-repaint-morphology-expected.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-repaint-morphology-expected.html b/third_party/WebKit/LayoutTests/css3/filters/effect-reference-repaint-morphology-expected.html
deleted file mode 100644
index a4d493807b6b3d052b2eb5518c0c40ad52c361d6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/css3/filters/effect-reference-repaint-morphology-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- .box {
- width: 200px;
- height: 200px;
- margin: 50px;
- background-color: green;
- -webkit-filter: url(#morphology);
- filter: url(#morphology);
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
- <defs>
- <filter id="morphology">
- <feMorphology radius="25" operator="erode"/>
- </filter>
- </defs>
- </svg>
- </body>
-</html>

Powered by Google App Engine