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

Side by Side Diff: LayoutTests/svg/animations/discard-on-svg-crash.html

Issue 99533004: [SVG] Implement 'discard' element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <body onload="startTest()">
4 <svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"
5 xmlns:xlink="http://www.w3.org/1999/xlink">
6 <svg id="inner" width="300" height="300">
7 <rect id="rect" width="100" height="100" fill="green">
8 <animate attributeName="x" from="0" to="300" begin="0s" dur="10s"/>
9 <discard xlink:href="#inner" begin="0s"/>
10 </rect>
11 </svg>
12 </svg>
13 <script>
14 function startTest() {
15 if (window.testRunner)
16 testRunner.waitUntilDone();
17 setTimeout(function() {
18 document.write('PASS: Test did not crash.');
19 if (window.testRunner) {
20 testRunner.dumpAsText();
21 testRunner.notifyDone();
22 }
23 }, 10);
24 }
25 </script>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698