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

Unified Diff: third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash.html

Issue 2817643003: Invalidate the "values cache" when resetting animated value state (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/animations/target-move-values-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698