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

Side by Side Diff: LayoutTests/svg/filters/feComposite-operator-lighter.svg

Issue 779963002: Add the 'lighter' composite operation to feComposite. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years 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 width="200" height="200" xmlns="http://www.w3.org/2000/svg">
2 <filter id="f" x="0" y="0" width="1" height="1" color-interpolation-filters= "sRGB">
3 <feFlood flood-color="red"/>
4 <feComposite operator="lighter" in2="SourceGraphic"/>
5 </filter>
6 <linearGradient id="g2b" x1="0" x2="0" y1="0" y2="1">
7 <stop offset="0" stop-color="#0f0"/>
8 <stop offset="1" stop-color="#00f"/>
9 </linearGradient>
10 <rect width="200" height="200" fill="url(#g2b)" filter="url(#f)"/>
11 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/filters/feComposite.svg ('k') | LayoutTests/svg/filters/feComposite-operator-lighter-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698