| Index: third_party/WebKit/LayoutTests/web-animations-api/player-cancel-invalidates-style.html
|
| diff --git a/third_party/WebKit/LayoutTests/web-animations-api/player-cancel-invalidates-style.html b/third_party/WebKit/LayoutTests/web-animations-api/player-cancel-invalidates-style.html
|
| deleted file mode 100644
|
| index a78264f1e929cb976b85287223b559c71c069830..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/web-animations-api/player-cancel-invalidates-style.html
|
| +++ /dev/null
|
| @@ -1,14 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../resources/testharness.js"></script>
|
| -<script src="../resources/testharnessreport.js"></script>
|
| -
|
| -<div id="target"></div>
|
| -<script>
|
| -test(function() {
|
| - var initial = getComputedStyle(target).background;
|
| - var player = target.animate([{background: 'blue'}, {background: 'green'}], 1000);
|
| - assert_not_equals(getComputedStyle(target).background, initial);
|
| - player.cancel();
|
| - assert_equals(getComputedStyle(target).background, initial);
|
| -}, "cancel() should cause effect to be cleared");
|
| -</script>
|
|
|