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

Side by Side Diff: LayoutTests/svg/as-image/animated-svg-wrong-timesource.html

Issue 204673004: Use monotonic time for SVGImage's serviceScriptedAnimations() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added TC. 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/animated-svg-wrong-timesource-expected.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 <!DOCTYPE html>
2 <body>
3 <script>
4 if (window.testRunner)
5 testRunner.waitUntilDone();
6 var img = new Image();
7 img.onload = function() {
8 setTimeout(function() {
9 if (window.testRunner)
10 testRunner.notifyDone();
11 }, 100);
12 }
13 img.src = "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100 ' height='100'><rect width='100' height='100' fill='red'><animate attributeName= 'fill' from='green' to='green' dur='10s'/></rect></svg>";
14 document.body.appendChild(img);
15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/as-image/animated-svg-wrong-timesource-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698