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

Side by Side Diff: LayoutTests/svg/animations/animate-element-reinserted-crash.html

Issue 107083007: Reset SVGAnimationElement values animation state on attribute changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 0ms timeout for pass. Created 6 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-element-reinserted-crash-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 <div>
3 <svg width="200" height="200">
4 <rect width="20" height="20" x="10" y="10">
5 <animate attributeName="fill" values="#111; #111" dur="2s" repeatCount="in definite"/>
6 </rect>
7 </svg>
8 </div>
9 <script type="text/javascript">
10 function pass() {
11 document.write("PASS");
12 if (window.testRunner)
13 testRunner.notifyDone();
14 }
15 window.onload = function() {
16 if (window.testRunner) {
17 testRunner.waitUntilDone();
18 testRunner.dumpAsText();
19 }
20 window.setTimeout(function() {
21 var f = document.createDocumentFragment();
22 var n = document.querySelector('div');
23 while (n.lastChild) {
24 f.appendChild(n.lastChild);
25 }
26 n.appendChild(f);
27 window.setTimeout(pass, 0);
28 }, 20);
29 };
30 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-element-reinserted-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698