| Index: third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.html b/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.html
|
| deleted file mode 100644
|
| index 4ca489949b0cd119aa503887368ab753df70a41a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-multiple-frames.html
|
| +++ /dev/null
|
| @@ -1,47 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<head>
|
| -<script type="text/javascript" src="../../http/tests/inspector-protocol/resources/inspector-protocol-test.js"></script>
|
| -<script>
|
| -function appendIframe()
|
| -{
|
| - var frame = document.createElement("iframe");
|
| - frame.src = "../resources/test-page-trigger-animation.html";
|
| - document.body.appendChild(frame);
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.eventHandler["Animation.animationStarted"] = onStarted;
|
| - InspectorTest.sendCommand("Animation.enable", {});
|
| - InspectorTest.evaluateInPage("appendIframe()", frameAttached);
|
| - var numberAnimationsCaptured = 0;
|
| - var lastStartTime = undefined;
|
| -
|
| - function frameAttached()
|
| - {
|
| - InspectorTest.log("Frame appended");
|
| - }
|
| -
|
| - function onStarted(data)
|
| - {
|
| - var animation = data.params.animation;
|
| -
|
| - if (!lastStartTime || animation.startTime >= lastStartTime)
|
| - InspectorTest.log("Animation started: start time is valid");
|
| - else if (lastStartTime)
|
| - InspectorTest.log("Animation started: invalid startTime!" + animation.startTime + "." + lastStartTime);
|
| - lastStartTime = animation.startTime;
|
| - numberAnimationsCaptured++;
|
| -
|
| - if (numberAnimationsCaptured < 10)
|
| - InspectorTest.evaluateInPage("appendIframe()", frameAttached);
|
| - else
|
| - InspectorTest.completeTest();
|
| - }
|
| -}
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -</body>
|
| -</html>
|
|
|