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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/svg-filter-child-box-reflect-expected.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>
3
4 <style>
5 svg {
6 width : 100px;
7 height: 100px;
8 padding : 0px;
9 margin : 0px;
10 }
11
12 #reflection {
13 position: relative;
14 left: -4px;
15 }
16 </style>
17
18 <svg viewBox="0 0 50 50">
19 <filter id="filterElement">
20 <feColorMatrix type="hueRotate" values="90"/>
21 </filter>
22 <rect style="filter: url(#filterElement)" fill="red" x="0" y="0" height="50" w idth="50"/>
23 </svg>
24
25 <svg id="reflection" viewBox="0 0 50 50">
26 <rect style="filter: url(#filterElement)" fill="red" x="0" y="0" height="50" w idth="50"/>
27 </svg>
28
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698