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

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

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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <img src="resources/css-animation.svg">
3 <script>
4 if (window.testRunner)
5 testRunner.waitUntilDone();
6 document.querySelector('img').onload = function() {
7 window.setTimeout(function() {
8 if (window.testRunner)
9 testRunner.notifyDone();
10 }, 50);
11 }
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698