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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2
3 <style>
4 svg {
5 width : 100px;
6 height: 100px;
7 padding : 0px;
8 margin : 0px;
9 }
10
11 #reflection {
12 position: relative;
13 left: -4px;
14 }
15 </style>
16
17 <svg style="filter: url(#filterElement)" viewBox="0 0 50 50">
18 <filter id="filterElement">
19 <feColorMatrix type="hueRotate" values="90"/>
20 </filter>
21 <rect fill="red" x="0" y="0" height="50" width="50"/>
22 </svg>
23
24 <svg id="reflection" style="filter: url(#filterElement)" viewBox="0 0 50 50">
25 <rect fill="red" x="0" y="0" height="50" width="50"/>
26 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698