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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-animation-affects-use-elements.html

Issue 1512483004: Simplify and test SVGInterpolation effect application (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 <!DOCTYPE html>
2 <svg>
3 <defs>
4 <rect x="0" y="0" width="100" height="40" id="target" fill="green" />
5 <rect x="100" y="0" width="100" height="40" id="expected" fill="red" />
6 <use xlink:href="#target" id="use"/>
7 </defs>
8
9 <use y="50" xlink:href="#expected"/>
10 <use y="100" xlink:href="#expected"/>
11
12 <use y="50" xlink:href="#target"/>
13 <use y="100" xlink:href="#use"/>
14 </svg>
15 <script>
16 target.animate([{'svg-x': '100'}, {'svg-x': '100'}], {fill: 'forwards'});
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698