Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / animation / animation-multiple-frames.html
blobd125ef0c9ef6afb6d4806990fed8ecd32f60ad47
1 <!doctype html>
2 <html>
3 <head>
4 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
5 <script>
6 function appendIframe()
8 var frame = document.createElement("iframe");
9 frame.src = "../resources/test-page-trigger-animation.html";
10 document.body.appendChild(frame);
13 function test()
15 InspectorTest.eventHandler["Animation.animationCreated"] = onCreated;
16 InspectorTest.sendCommand("Animation.enable", {});
17 InspectorTest.evaluateInPage("appendIframe()", frameAttached);
18 var numberAnimationsCaptured = 0;
19 var lastStartTime = undefined;
21 function frameAttached()
23 InspectorTest.log("Frame appended");
26 function onCreated(data)
28 var player = data.params.player;
30 if (!lastStartTime || player.startTime > lastStartTime)
31 InspectorTest.log("Animation created: start time is valid");
32 lastStartTime = player.startTime;
33 numberAnimationsCaptured++;
35 if (numberAnimationsCaptured < 10)
36 InspectorTest.evaluateInPage("appendIframe()", frameAttached);
37 else
38 InspectorTest.completeTest();
41 </script>
42 </head>
43 <body onload="runTest()">
44 </body>
45 </html>