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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/animations/target-move-crash.html

Issue 2763283002: Revalidate SMIL animation value after target change (Closed)
Patch Set: Created 3 years, 9 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 | third_party/WebKit/LayoutTests/svg/animations/target-move-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 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 }
7
8 var done = false;
9 function repeatHandler() {
10 if (done && window.testRunner)
11 testRunner.notifyDone()
12 }
13 function handler() {
14 group.before(firstroot);
15 done = true;
16 }
17 </script>
18 <svg id="firstroot"></svg>
19 <svg>
20 <g id="group">
21 <set attributeName="stroke-dashoffset" xlink:href="#firstroot" onbegin="hand ler()"/>
22 </g>
23 <animate attributeName="stroke-linejoin" dur="0.1s" repeatDur="indefinite" onr epeat="repeatHandler()">
24 </svg>
25 <p>PASS if no crash</p>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/animations/target-move-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698