Index: LayoutTests/svg/custom/use-pathseglist-change.html |
diff --git a/LayoutTests/svg/custom/use-pathseglist-change.html b/LayoutTests/svg/custom/use-pathseglist-change.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d97b80673d98a4e4fa9b646341c3a250168fd859 |
--- /dev/null |
+++ b/LayoutTests/svg/custom/use-pathseglist-change.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE HTML> |
+<script> |
+if (window.testRunner) |
+ testRunner.waitUntilDone(); |
+ |
+window.onload = function() { |
+ document.getElementById("path").pathSegList[2].y = 200; |
+ requestAnimationFrame(function() { |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+ }); |
+}; |
+</script> |
+<svg height="200" width="300"> |
+ <path id="path" d="M50,50 L100,50 L100,100 Z" style="fill:green;"/> |
+ <use xlink:href="#path" x="100"/> |
+</svg> |