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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/svg-filter-root-box-reflect.html

Issue 1987943002: [wip] unprefix filter Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Decide on BUG 109224, minor test code tweaks. Created 4 years, 7 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 <html>
fs 2016/05/23 12:29:52 Drop.
Noel Gordon 2016/05/29 04:15:28 Done.
3
4 <style>
5 svg {
6 width : 100px;
7 height: 100px;
8 padding : 0px;
9 margin : 0px;
10 }
11
12 #reflect {
13 -webkit-box-reflect: right;
14 box-reflect: right;
15 }
16 </style>
17
18 <svg id="reflect" style="filter: url(#filterElement)" viewBox="0 0 50 50">
19 <filter id="filterElement">
20 <feColorMatrix type="hueRotate" values="90"/>
21 </filter>
22 <rect fill="red" x="0" y="0" height="50" width="50"/>
23 </svg>
24
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698