| Index: third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html
|
| diff --git a/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html b/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html
|
| deleted file mode 100644
|
| index fbeb5b2c625e2635affc6d75ee705f79fb9c4f73..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/web-animations-api/player-play-with-negative-current-time.html
|
| +++ /dev/null
|
| @@ -1,24 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../resources/testharness.js"></script>
|
| -<script src="../resources/testharnessreport.js"></script>
|
| -<div id="target"></div>
|
| -<script>
|
| -test(function() {
|
| - var keyframes = [
|
| - {left: '0px'},
|
| - {left: '100px'}
|
| - ];
|
| - var timing = {
|
| - duration: 1,
|
| - delay: -100,
|
| - };
|
| - var player = target.animate(keyframes, timing);
|
| - document.timeline.currentTime = 0;
|
| - var oldStartTime = player.startTime;
|
| - player.startTime += 2000;
|
| - assert_equals(player.startTime, oldStartTime + 2000);
|
| - player.play();
|
| - assert_equals(player.startTime, null);
|
| - assert_equals(player.currentTime, 0);
|
| -}, 'Play() called with a large negative delay');
|
| -</script>
|
|
|