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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect.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 #reflect {
12 -webkit-box-reflect: right;
13 box-reflect: right;
14 }
15 </style>
16
17 <svg id="reflect" viewBox="0 0 50 50">
18 <filter id="filterElement">
19 <feColorMatrix type="hueRotate" values="90"/>
20 </filter>
21 <rect style="filter: url(#filterElement)" fill="red" x="0" y="0" height="50" w idth="50"/>
22 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698