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

Unified Diff: third_party/WebKit/LayoutTests/svg/filters/svg-element-invalid-filter.html

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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/svg/filters/svg-element-invalid-filter.html
diff --git a/third_party/WebKit/LayoutTests/svg/filters/svg-element-invalid-filter.html b/third_party/WebKit/LayoutTests/svg/filters/svg-element-invalid-filter.html
new file mode 100644
index 0000000000000000000000000000000000000000..e8976cc16ffd6c8d5c5fb3505930be61b063fde1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/filters/svg-element-invalid-filter.html
@@ -0,0 +1,97 @@
+<!doctype html>
+
+<style>
+ svg {
+ width: 100px;
+ height: 100px;
+ margin: 1px;
+ }
+
+ #test-root {
+ position: absolute;
+ left: 10px;
+ top: 10px;
+ }
+
+ #test-child {
+ position: absolute;
+ left: 10px;
+ top: 130px;
+ }
+</style>
+
+<p id="test-root">
+
+<!-- SVG root element: the first three filters are valid, the rest are not. -->
+
+<svg style="filter: url(#filter)" viewBox="0 0 50 50">
+ <filter id="filter">
+ <feColorMatrix type="matrix" values="0 0 0 0 0, 1 0 0 0 0, 0 0 0 0 0, 0 0 0 1 0"/>
+ </filter>
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: blur(0px)" viewBox="0 0 50 50">
+ <rect fill="lime" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: url(#filter) blur(0px)" viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: url(#missing)" viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: url(invalid)" viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: url(invalid#missing)" viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg style="filter: url(filter)" viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+</p>
+
+<p id="test-child">
+
+<!-- SVG child element: the first filter is valid, the rest are not. -->
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(#filter)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(#filter) blur(0px)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: blur(0px)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(#missing)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(invalid)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(invalid#missing)"/>
+</svg>
+
+<svg viewBox="0 0 50 50">
+ <rect fill="red" x="0" y="0" height="50" width="50"
+ style="filter: url(filter)"/>
+</svg>
+</p>

Powered by Google App Engine
This is Rietveld 408576698