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

Side by Side Diff: LayoutTests/svg/custom/pattern-false-resource-cycle.html

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 <!DOCTYPE html>
2 <svg>
3 <clipPath id="c1">
4 <rect width="100" height="100"/>
5 </clipPath>
6 <pattern id="p1" width="1" height="1">
7 <rect width="100" height="100" fill="green"/>
8 <clipPath id="c2" clip-path="url(#c1)">
9 <rect width="100" height="100"/>
10 </clipPath>
11 </pattern>
12 <rect width="100" height="100" fill="url(#p1)" clip-path="url(#c1)"/>
13 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698