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

Side by Side Diff: LayoutTests/svg/filters/feComponentTransfer-subregion.svg

Issue 112053007: Compute source/destination rectangles in FEComponentTransfer::applySkia (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test touched up. Created 7 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
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feComponentTransfer-subregion-expected.svg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <defs>
3 <filter id="f1" filterUnits="userSpaceOnUse" x="0" y="0" width="200" height= "200">
4 <feFlood flood-color="#ff0000" result="red" x="50" y="50" width="100" heig ht="100"/>
5 <feImage xlink:href="#rect"/>
6 <feComponentTransfer x="50" y="50" width="100" height="100">
7 <feFuncG type="linear" slope="0" intercept="1"/>
8 </feComponentTransfer>
9 <feComposite operator="over" in2="red"/>
10 </filter>
11
12 <rect id="rect" x="50" y="50" width="100" height="100" fill="#000000"/>
13 </defs>
14 <!-- There should be a lime rectangle below, and no red. -->
15 <g filter="url(#f1)"/>
16 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feComponentTransfer-subregion-expected.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698