Index: third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash.html |
diff --git a/third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash.html b/third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4e75b4ee5ef0935ae9da2c7dec277075c1028e6a |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<svg> |
+ <defs id="gl"> |
+ <linearGradient id="g"> |
+ <animateTransform/> |
+ </linearGradient> |
+ </defs> |
+ <feFuncG id="f"> |
+ <animate href="#g" attributeName="color" values="blue"> |
+ </feFuncG> |
+</svg> |
+<script> |
+if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ testRunner.waitUntilDone(); |
+} |
+setTimeout(function() { |
+ f.append(gl); |
+ requestAnimationFrame(function() { |
+ if (window.testRunner) |
+ testRunner.notifyDone() |
+ }); |
+}); |
+</script> |
+<p>PASS if no crash</p> |