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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/filters/shadow-on-filter.svg

Issue 1387823003: Remove lingering -webkit-svg-shadow tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs>
3 <filter primitiveUnits="objectBoundingBox" id="filter" x="-50%" y="-50%" width=" 160%" height="160%" style="-webkit-svg-shadow:10px 10px 3px purple;">
4 <feFlood x="-40%" y="-40%" width="50%" height="50%" flood-color="red" style="-we bkit-svg-shadow:-4px -4px 0px blue;" result="flood1"/>
5 <feFlood x="-20%" y="-20%" width="50%" height="50%" flood-color="green" result=" flood2"/>
6 <feComposite in="flood1" in2="flood2" width="120%" height="120%" result="comp1" style="-webkit-svg-shadow:4px -1px 3px green;"/>
7 <feGaussianBlur stdDeviation="0.0133" style="-webkit-svg-shadow: 6px 4px 8px yel low;"/>
8 </filter>
9 </defs>
10 <rect x="200" y="200" width="300" height="300" fill="green" style="filter:url(#f ilter);"/>
11 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698