| Index: third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.html b/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.html
|
| deleted file mode 100644
|
| index 2a75c5abf501cc6cc0d018f5069332bf54ed4104..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/animation/animation-pause-close.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script type="text/javascript" src="../../http/tests/inspector-protocol/resources/inspector-protocol-test.js"></script>
|
| -<script>
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.sendCommandOrDie("Animation.enable", {});
|
| - InspectorTest.sendCommandOrDie("Animation.setPlaybackRate", { playbackRate: 0 }, pagePaused);
|
| -
|
| - function pagePaused()
|
| - {
|
| - InspectorTest.sendCommandOrDie("Animation.getPlaybackRate", {}, logPlaybackRate);
|
| - }
|
| -
|
| - function logPlaybackRate(result)
|
| - {
|
| - InspectorTest.log(result.playbackRate);
|
| - InspectorTest.sendCommandOrDie("Animation.disable", {}, pageDisabled);
|
| - }
|
| -
|
| - function pageDisabled(message)
|
| - {
|
| - InspectorTest.sendCommandOrDie("Animation.enable", {});
|
| - InspectorTest.sendCommandOrDie("Animation.getPlaybackRate", {}, animationsDisabled);
|
| - }
|
| -
|
| - function animationsDisabled(result)
|
| - {
|
| - InspectorTest.log(result.playbackRate);
|
| - InspectorTest.completeTest();
|
| - }
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -</body>
|
| -</html>
|
|
|