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

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

Issue 136313002: Revert of [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 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
3 <animate id="anim" attributeName="visibility" to="visible" begin="0s" end="5s" />
4 <rect x="0" y="0" width="50" height="50" fill="rgb(255, 0, 0)">
5 <set id="set1" attributeName="fill" to="rgb(0, 255, 0)" begin="2s" fill="fre eze"/>
6 <set id="set2" attributeName="fill" to="rgb(0, 0, 255)" begin="3s" fill="fre eze"/>
7 </rect>
8
9 <discard id="discard1" xlink:href="#set1" begin="1s"/>
10 <discard id="discard2" xlink:href="#set2"/>
11 <discard id="discard3" xlink:href="#discard1"/>
12 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698