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

Side by Side Diff: LayoutTests/svg/custom/recursive-pattern.svg

Issue 593173002: Change SVG paint server fallback for a non-existent URL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Adjust tests. Created 6 years, 2 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" xmlns:xlink="http://www.w3.org/1999/xlin k"> 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <defs> 2 <defs>
3 <pattern patternUnits="userSpaceOnUse" id="pattern0" x="0" y="0" width="100" height="100"> 3 <pattern patternUnits="userSpaceOnUse" id="pattern0" x="0" y="0" width="100" height="100">
4 <rect x="0" y="0" width="50" height="50" fill="black"/> 4 <rect x="0" y="0" width="50" height="50" fill="black"/>
5 <rect x="50" y="50" width="100" height="100" fill="green"/> 5 <rect x="50" y="50" width="100" height="100" fill="green"/>
6 </pattern> 6 </pattern>
7 7
8 <pattern patternUnits="userSpaceOnUse" id="pattern1" x="0" y="0" width="100" height="100"> 8 <pattern patternUnits="userSpaceOnUse" id="pattern1" x="0" y="0" width="100" height="100">
9 <rect x="0" y="0" width="50" height="50" fill="url(#pattern1)"/> 9 <rect x="0" y="0" width="50" height="50" fill="url(#pattern1) black"/>
10 <rect x="50" y="50" width="100" height="100" fill="green"/> 10 <rect x="50" y="50" width="100" height="100" fill="green"/>
11 </pattern> 11 </pattern>
12 12
13 <pattern patternUnits="userSpaceOnUse" id="pattern2" x="0" y="0" width="100" height="100"> 13 <pattern patternUnits="userSpaceOnUse" id="pattern2" x="0" y="0" width="100" height="100">
14 <rect x="50" y="50" width="100" height="100" fill="green"/> 14 <rect x="50" y="50" width="100" height="100" fill="green"/>
15 <rect x="0" y="0" width="50" height="50" fill="url(#pattern1)"/> 15 <rect x="0" y="0" width="50" height="50" fill="url(#pattern1) black"/>
16 </pattern> 16 </pattern>
17 17
18 <pattern id="pattern3" x="0" y="0" width="100" height="100" xlink:href="#pat tern1"/> 18 <pattern id="pattern3" x="0" y="0" width="100" height="100" xlink:href="#pat tern1"/>
19 <pattern id="pattern4" x="0" y="0" width="100" height="100" xlink:href="#pat tern2"/> 19 <pattern id="pattern4" x="0" y="0" width="100" height="100" xlink:href="#pat tern2"/>
20 20
21 <pattern id="pattern6" xlink:href="#pattern5"/> 21 <pattern id="pattern6" xlink:href="#pattern5"/>
22 <pattern patternUnits="userSpaceOnUse" id="pattern5" x="0" y="0" width="100 " height="100"> 22 <pattern patternUnits="userSpaceOnUse" id="pattern5" x="0" y="0" width="100 " height="100">
23 <rect x="0" y="0" width="50" height="50" fill="url(#pattern6)"/> 23 <rect x="0" y="0" width="50" height="50" fill="url(#pattern6) black"/>
24 <rect x="50" y="50" width="100" height="100" fill="green"/> 24 <rect x="50" y="50" width="100" height="100" fill="green"/>
25 </pattern> 25 </pattern>
26 26
27 <rect id="rect" x="0" y="0" width="50" height="50" fill="url(#pattern7)"/> 27 <rect id="rect" x="0" y="0" width="50" height="50" fill="url(#pattern7) blac k"/>
28 <pattern patternUnits="userSpaceOnUse" id="pattern7" x="0" y="0" width="100" height="100"> 28 <pattern patternUnits="userSpaceOnUse" id="pattern7" x="0" y="0" width="100" height="100">
29 <use xlink:href="#rect"/> 29 <use xlink:href="#rect"/>
30 <rect id="reuse" x="50" y="50" width="100" height="100" fill="green"/> 30 <rect id="reuse" x="50" y="50" width="100" height="100" fill="green"/>
31 </pattern> 31 </pattern>
32 32
33 <rect id="rect2" x="0" y="0" width="50" height="50" fill="url(#pattern8)"/> 33 <rect id="rect2" x="0" y="0" width="50" height="50" fill="url(#pattern8) bla ck"/>
34 <use id="use" xlink:href="#rect2"/> 34 <use id="use" xlink:href="#rect2"/>
35 <pattern patternUnits="userSpaceOnUse" id="pattern8" x="0" y="0" width="100" height="100"> 35 <pattern patternUnits="userSpaceOnUse" id="pattern8" x="0" y="0" width="100" height="100">
36 <g id="reuse2"> 36 <g id="reuse2">
37 <use xlink:href="#reuse"/> 37 <use xlink:href="#reuse"/>
38 <use xlink:href="#use"/> 38 <use xlink:href="#use"/>
39 </g> 39 </g>
40 </pattern> 40 </pattern>
41 41
42 <pattern patternUnits="userSpaceOnUse" id="pattern9" x="0" y="0" width="100" height="100"> 42 <pattern patternUnits="userSpaceOnUse" id="pattern9" x="0" y="0" width="100" height="100">
43 <use xlink:href="#reuse2"/> 43 <use xlink:href="#reuse2"/>
(...skipping 19 matching lines...) Expand all
63 <rect x="100" y="0" width="100" height="100" fill="url(#pattern0)"/> 63 <rect x="100" y="0" width="100" height="100" fill="url(#pattern0)"/>
64 <rect x="200" y="0" width="100" height="100" fill="url(#pattern0)"/> 64 <rect x="200" y="0" width="100" height="100" fill="url(#pattern0)"/>
65 <rect x="0" y="100" width="100" height="100" fill="url(#pattern0)"/> 65 <rect x="0" y="100" width="100" height="100" fill="url(#pattern0)"/>
66 <rect x="100" y="100" width="100" height="100" fill="url(#pattern0)"/> 66 <rect x="100" y="100" width="100" height="100" fill="url(#pattern0)"/>
67 <rect x="200" y="100" width="100" height="100" fill="url(#pattern0)"/> 67 <rect x="200" y="100" width="100" height="100" fill="url(#pattern0)"/>
68 <rect x="0" y="200" width="100" height="100" fill="url(#pattern0)"/> 68 <rect x="0" y="200" width="100" height="100" fill="url(#pattern0)"/>
69 <rect x="100" y="200" width="100" height="100" fill="url(#pattern0)"/> 69 <rect x="100" y="200" width="100" height="100" fill="url(#pattern0)"/>
70 <rect x="200" y="200" width="100" height="100" fill="url(#pattern0)"/> 70 <rect x="200" y="200" width="100" height="100" fill="url(#pattern0)"/>
71 </g> 71 </g>
72 </svg> 72 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/invalid-uri-stroke-expected.txt ('k') | LayoutTests/svg/custom/stroke-fallback-invalid-uri.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698