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

Unified Diff: LayoutTests/svg/dom/resources/svg-with-animate-use.svg

Issue 298873003: SVG: SVGAnimateElement should not cache |m_animatedElements| (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove more asserts Created 6 years, 7 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
Index: LayoutTests/svg/dom/resources/svg-with-animate-use.svg
diff --git a/LayoutTests/svg/dom/resources/svg-with-animate-use.svg b/LayoutTests/svg/dom/resources/svg-with-animate-use.svg
new file mode 100644
index 0000000000000000000000000000000000000000..72e0d0b789b3c376699c2d2236ffc49e4bc438b7
--- /dev/null
+++ b/LayoutTests/svg/dom/resources/svg-with-animate-use.svg
@@ -0,0 +1,10 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs id="defs">
+ <g id="template">
+ <rect x="10" y="10" width="10" height="10" fill="red">
+ <animate attributeName="x" attributeType="XML" begin="0s" dur="10s" fill="freeze" from="0" to="100" />
+ </rect>
+ </g>
+ </defs>
+ <use xlink:href="#template" />
+</svg>
« no previous file with comments | « LayoutTests/svg/dom/remove-use-target-element-indirectly-expected.txt ('k') | Source/core/svg/SVGAnimateElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698