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

Side by Side Diff: LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg

Issue 303693009: Make SVGResourcesCycleSolver check for cycles beyond one level (and more) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add dynamic tests. Created 6 years, 6 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 <svg xmlns="http://www.w3.org/2000/svg">
2 <pattern width="100%" height="100%" id="pattern" viewBox="0 0 100 100">
3 <rect width="100" height="100" fill="gray"/>
4 </pattern>
5 <pattern width="100%" height="100%" id="maskPattern" viewBox="0 0 100 100">
6 <rect width="100" height="100" fill="gray"/>
7 </pattern>
8 <mask id="mask">
9 <circle fill="url(#maskPattern)" cx="100" cy="100" r="100"/>
10 </mask>
11 <rect width="200" height="200" mask="url(#mask)" fill="url(#pattern)"/>
12 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698