Index: LayoutTests/svg/custom/pattern-false-resource-cycle.html |
diff --git a/LayoutTests/svg/custom/pattern-false-resource-cycle.html b/LayoutTests/svg/custom/pattern-false-resource-cycle.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7e8b4e1a1f1f22b46bdc17f1b23f513bd2f280df |
--- /dev/null |
+++ b/LayoutTests/svg/custom/pattern-false-resource-cycle.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<svg> |
+ <clipPath id="c1"> |
+ <rect width="100" height="100"/> |
+ </clipPath> |
+ <pattern id="p1" width="1" height="1"> |
+ <rect width="100" height="100" fill="green"/> |
+ <clipPath id="c2" clip-path="url(#c1)"> |
+ <rect width="100" height="100"/> |
+ </clipPath> |
+ </pattern> |
+ <rect width="100" height="100" fill="url(#p1)" clip-path="url(#c1)"/> |
+</svg> |