Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: LayoutTests/web-animations-api/w3c/get-animation-players.html

Issue 650543004: Move timeline get CSS AnimationPlayers W3C test into seperate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make file names more consistent Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/web-animations-api/w3c/get-css-players.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/web-animations-api/w3c/get-css-players.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698