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

Unified Diff: third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect-expected.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-filter-child-box-reflect-expected.html
diff --git a/third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect-expected.html b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..ff9cca684360e645c9bae61ab07c65ff1911885e
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect-expected.html
@@ -0,0 +1,26 @@
+<!doctype html>
+
+<style>
+ svg {
+ width : 100px;
+ height: 100px;
+ padding : 0px;
+ margin : 0px;
+ }
+
+ #reflection {
+ position: relative;
+ left: -4px;
+ }
+</style>
+
+<svg viewBox="0 0 50 50">
+ <filter id="filterElement">
+ <feColorMatrix type="hueRotate" values="90"/>
+ </filter>
+ <rect style="filter: url(#filterElement)" fill="red" x="0" y="0" height="50" width="50"/>
+</svg>
+
+<svg id="reflection" viewBox="0 0 50 50">
+ <rect style="filter: url(#filterElement)" fill="red" x="0" y="0" height="50" width="50"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698