| Index: LayoutTests/web-animations-api/w3c/get-animation-players.html
|
| diff --git a/LayoutTests/web-animations-api/w3c/getAnimationPlayers.html b/LayoutTests/web-animations-api/w3c/get-animation-players.html
|
| similarity index 78%
|
| rename from LayoutTests/web-animations-api/w3c/getAnimationPlayers.html
|
| rename to LayoutTests/web-animations-api/w3c/get-animation-players.html
|
| index a2ee8e69158655ec9b1dd0ff026b8309c652e2f2..4a99acb8d2b2daec4851f6a3ee19ce4c5d75248d 100644
|
| --- a/LayoutTests/web-animations-api/w3c/getAnimationPlayers.html
|
| +++ b/LayoutTests/web-animations-api/w3c/get-animation-players.html
|
| @@ -1,15 +1,6 @@
|
| <!DOCTYPE html>
|
| <script src="../../resources/testharness.js"></script>
|
| <script src="../../resources/testharnessreport.js"></script>
|
| -<style>
|
| -@keyframes test {
|
| - from { opacity: 0; }
|
| - to { opacity: 1; }
|
| -}
|
| -.cssAnimation {
|
| - animation: test 2s;
|
| -}
|
| -</style>
|
| <div id='container'>
|
| <div id='element'></div>
|
| </div>
|
| @@ -95,26 +86,4 @@ test(function() {
|
|
|
| }, 'getAnimationPlayers() with delays');
|
|
|
| -async_test(function(t) {
|
| - assert_equals(document.timeline.getAnimationPlayers().length, 0);
|
| - assert_equals(container.getAnimationPlayers().length, 0);
|
| - assert_equals(element.getAnimationPlayers().length, 0);
|
| -
|
| - element.className = 'cssAnimation';
|
| - t.step(function() {
|
| - onload = function () {
|
| - var players = document.timeline.getAnimationPlayers();
|
| - assert_equals(players.length, 1);
|
| - assert_equals(container.getAnimationPlayers().length, 0);
|
| - assert_equals(element.getAnimationPlayers().length, 1);
|
| -
|
| - players[0].finish();
|
| - assert_equals(document.timeline.getAnimationPlayers().length, 0);
|
| - assert_equals(container.getAnimationPlayers().length, 0);
|
| - assert_equals(element.getAnimationPlayers().length, 0);
|
| - t.done();
|
| - }
|
| - });
|
| -}, 'getAnimationPlayers() with cssanimations');
|
| -
|
| -</script>
|
| +</script>
|
|
|