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

Side by Side Diff: LayoutTests/css3/compositing/svg-blend-layer-mask.html

Issue 17115010: Add support for element blending to SVG (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test files for webkit-svg-shadow Created 7 years, 5 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 <!DOCTYPE HTML>
2 <html>
3 <body>
4 <p>Test for isolation caused by a mask. This test passes if the whole rectangle is green.</p>
5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="400px" height="400p x" >
6 <defs>
7 <mask id="msk">
8 <rect x="10" y="10" width="20" height="20" />
9 </mask>
10 </defs>
11 <g transform="scale(4 4)">
12 <rect x="0" y="0" width="40" height="40" fill="rgb(0,255,0)"/>
13 <g mask="url(#msk)">
14 <rect x="10" y="10" width="20" height="20" fill="rgb(0,255,0)" style="mix-bl end-mode: difference"/>
15 </g>
16 </g>
17 </svg>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698