Index: LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html |
diff --git a/LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html b/LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..62e2f91bbcb4483563b9fb1c100c0d061ba25d8c |
--- /dev/null |
+++ b/LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html |
@@ -0,0 +1,34 @@ |
+<!DOCTYPE html> |
+<script> |
+if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ testRunner.waitUntilDone(); |
+ window.onload = function() { |
+ testRunner.displayAsyncThen(function() { |
+ mutateTree(); |
+ testRunner.displayAsyncThen(function() { |
+ testRunner.notifyDone(); |
+ }); |
+ }); |
+ }; |
+} else { |
+ window.onload = function() { setTimeout(mutateTree, 100); }; |
+} |
+function mutateTree() { |
+ // A reference from the 'rect' to the pattern cycle. |
+ document.getElementsByTagName('rect')[0].setAttribute('fill', 'url(#p1)'); |
+} |
+</script> |
+<p>PASS if no crash (stack overflow).</p> |
+<svg width="100" height="100"> |
+ <rect width="100" height="100"/> |
+ <pattern id="p3" width="1" height="1"> |
+ <rect fill="url(#p1)" width="100" height="100"/> |
+ </pattern> |
+ <pattern id="p2" width="1" height="1"> |
+ <rect fill="url(#p3)" width="100" height="100"/> |
+ </pattern> |
+ <pattern id="p1" width="1" height="1"> |
+ <rect fill="url(#p2)" width="100" height="100"/> |
+ </pattern> |
+</svg> |