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

Side by Side Diff: LayoutTests/svg/clip-path/clip-in-mask.svg

Issue 216933006: Remove carriage returns from LayoutTests (18) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Expectations Created 6 years, 8 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
1 <svg xmlns="http://www.w3.org/2000/svg"> 1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs> 2 <defs>
3 <clipPath id="clip" clipPathUnits="objectBoundingBox"> 3 <clipPath id="clip" clipPathUnits="objectBoundingBox">
4 <circle cx="0" cy="0" r="0.5" /> 4 <circle cx="0" cy="0" r="0.5" />
5 <circle cx="0" cy="1" r="0.5" /> 5 <circle cx="0" cy="1" r="0.5" />
6 <circle cx="1" cy="0" r="0.5" /> 6 <circle cx="1" cy="0" r="0.5" />
7 <circle cx="1" cy="1" r="0.5" /> 7 <circle cx="1" cy="1" r="0.5" />
8 </clipPath> 8 </clipPath>
9 9
10 <mask id="mask1" x="0" y="0" width="1" height="1" maskContentUnits="objectBo undingBox"> 10 <mask id="mask1" x="0" y="0" width="1" height="1" maskContentUnits="objectBo undingBox">
11 <rect x="0" y="0" width="1" height="1" fill="white"/> 11 <rect x="0" y="0" width="1" height="1" fill="white"/>
12 <rect x="0" y="0" width="1" height="1" fill="black" clip-path="url(#clip )" /> 12 <rect x="0" y="0" width="1" height="1" fill="black" clip-path="url(#clip )" />
13 </mask> 13 </mask>
14 14
15 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo undingBox"> 15 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo undingBox">
16 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip )" /> 16 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip )" />
17 </mask> 17 </mask>
18 </defs> 18 </defs>
19 19
20 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" /> 20 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" />
21 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" /> 21 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" />
22 </svg> 22 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/as-object/svg-embedded-in-html-in-iframe.html ('k') | LayoutTests/svg/clip-path/clip-path-on-clipped-use.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698