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

Side by Side Diff: LayoutTests/inspector-protocol/resources/test-page-trigger-animation.html

Issue 1042143005: Devtools Animations: Support multiple frames in the animation timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Naming changes Created 5 years, 8 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 <html>
3 <head>
4 <script>
5 function startAnimation()
6 {
7 var player = node.animate([{ width: "100px" }, { width: "200px" }], 100);
8 }
9 </script>
10 </head>
11 <body onload="startAnimation()">
12 <div id="node" style="background-color: red; height: 100px; width: 100px"></di v>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698