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

Side by Side Diff: LayoutTests/css3/filters/effect-reference-subregion-chained.html

Issue 22794007: Implement filter primitive subregion on accelerated reference filters (FEColorMatrix a… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix computation of default filter primitive subregion Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
2 <defs>
3 <filter id="colormatrix" color-interpolation-filters="sRGB">
4 <feColorMatrix type="hueRotate" values="10" x="80" y="0" width="80" height ="90"/>
5 <feColorMatrix type="hueRotate" values="10" x="40" y="0" width="80" height ="90"/>
6 </filter>
7 </defs>
8 </svg>
9 <style>
10 img {
11 margin: 10px;
12 }
13 </style>
14 <img src="resources/reference.png">
15 <img style="-webkit-filter: url(#colormatrix); filter: url(#colormatrix);" src=" resources/reference.png">
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698