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

Side by Side Diff: LayoutTests/svg/filters/feDiffuseLighting-linearrgb-lighting-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="dl-srgb" x="0" y="0" width="100" height="50"
3 filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
4 <feDiffuseLighting lighting-color="#008000">
5 <feDistantLight elevation="90"/>
6 </feDiffuseLighting>
7 </filter>
8 <filter id="dl-linearrgb" x="0" y="0" width="100" height="50"
9 filterUnits="userSpaceOnUse" color-interpolation-filters="linearRGB">
10 <feDiffuseLighting lighting-color="#008000">
11 <feDistantLight elevation="90"/>
12 </feDiffuseLighting>
13 </filter>
14 <rect width="100" height="50" filter="url(#dl-srgb)"/>
15 <rect transform="translate(0 50)" width="100" height="50" filter="url(#dl-line arrgb)"/>
16 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/svg/filters/feDiffuseLighting-linearrgb-lighting-color-expected.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698