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

Side by Side Diff: LayoutTests/svg/animations/animate-teardown.html

Issue 327463002: SVG: no need to call |clearAnimatedType| at SVGAnimate{,Motion}Element dtor. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address comments Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-teardown-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <svg>
3 <!-- animate element is destructed before rect elements -->
4 <animate xlink:href="#rect" attributeName="x" attributeType="XML" begin="0s" d ur="10s" fill="freeze" from="0" to="100" />
5 <g id="usetarget">
6 <rect id="rect" x="10" y="10" width="10" height="10" fill="red"></rect>
7 </g>
8 <use xlink:href="#usetarget"></use>
9 </svg>
10 <p>Test passes if unloading this document does not fail ASSERTs on debug builds. </p>
11 <script>
12 // This test doesn't use js-test.js to avoid unexpected DOM references.
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-teardown-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698