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

Side by Side Diff: LayoutTests/svg/filters/feDropShadow-linearrgb-flood-color.svg

Issue 134733016: Add support for converting Colors to linear RGB; Fix relevant filters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase; update TestExpectations Created 6 years, 11 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 <filter id="ds-srgb" filterPrimitiveUnits="userSpaceOnUse" filterUnits="userSp aceOnUse"
3 width="100" height="50" x="0" y="0" color-interpolation-filters="sRGB" >
4 <feDropShadow flood-color="#008000" dx="50" dy="0" stdDeviation="0"/>
5 </filter>
6 <filter id="ds-linearrgb" filterPrimitiveUnits="userSpaceOnUse" filterUnits="u serSpaceOnUse"
7 width="100" height="50" x="0" y="0" color-interpolation-filters="linea rRGB">
8 <feDropShadow flood-color="#008000" dx="50" dy="0" stdDeviation="0"/>
9 </filter>
10 <rect width="50" height="50" fill="#008000" filter="url(#ds-srgb)"/>
11 <rect transform="translate(0 50)" width="50" height="50" fill="#008000" filter ="url(#ds-linearrgb)"/>
12 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698