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

Side by Side Diff: LayoutTests/svg/animations/discard-rect-with-anim-child-a.svg

Issue 99533004: [SVG] Implement 'discard' element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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 <?xml version="1.0" encoding="UTF-8"?>
2 <svg onload="loaded()" version="1.2" baseProfile="tiny" id="svg-root" width="100 %" height="100%"
3 viewBox="0 0 480 360" xmlns="http://www.w3.org/2000/svg"
4 xmlns:xlink="http://www.w3.org/1999/xlink">
5 <rect id="r1" x="100" y="100" width="200" height="200" fill="green"/>
6 <rect id="r2" x="100" y="100" width="200" height="200" fill="blue">
7 <set attributeName="fill" to="red" begin="2s" fill="freeze" />
pdr. 2013/12/20 23:49:11 nit: indentation
8 <discard id="discard1" begin="4s"/>
9 </rect>
10 <script>
11 if (window.testRunner)
12 testRunner.waitUntilDone();
13
14 function loaded() {
15 document.documentElement.setCurrentTime(4);
16
17 if (window.testRunner)
18 setTimeout(function(){testRunner.notifyDone();}, 100);
19 }
20 </script>
21 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698