Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / resources / test-page-trigger-animation.html
blobdc6c20b942102ffcadb4fd25661b6a562b223c86
1 <!doctype html>
2 <html>
3 <head>
4 <script>
5 function startAnimation()
7 var player = node.animate([{ width: "100px" }, { width: "200px" }], 100);
9 </script>
10 </head>
11 <body onload="startAnimation()">
12 <div id="node" style="background-color: red; height: 100px; width: 100px"></div>
13 </body>
14 </html>