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

Side by Side Diff: LayoutTests/svg/as-image/resources/css-animation.svg

Issue 196223014: Fix running of CSS Animations in SVG-in-<img>/background-image/etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/as-image/svg-image-with-css-animation.html » ('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 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
2 <rect width="100" height="100" class="s0"/>
3 <style>
4 @keyframes pop { from { fill: red; } to { fill: green; } }
5 @-webkit-keyframes pop { from { fill: red; } to { fill: green; } }
6
7 .s0 {
8 animation-name: pop;
9 animation-duration: 0.001s;
10 animation-iteration-count: 1;
11 animation-fill-mode: forwards;
12 -webkit-animation-name: pop;
13 -webkit-animation-duration: 0.001s;
14 -webkit-animation-iteration-count: 1;
15 -webkit-animation-fill-mode: forwards;
16 }
17 </style>
18 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/as-image/svg-image-with-css-animation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698