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

Unified Diff: polymer_0.5.0/bower_components/web-animations-js/test/blink/get-css-players.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 12 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
Index: polymer_0.5.0/bower_components/web-animations-js/test/blink/get-css-players.html
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/get-css-players.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/get-css-players.html
new file mode 100644
index 0000000000000000000000000000000000000000..ad10fb7c10f548d9d44482aa66a858b358ec5ecc
--- /dev/null
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/get-css-players.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<script src="testharness/testharness.js"></script>
+<script src="testharness/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>
+
+<script>
+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';
+ onload = function () {
+ t.step(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>

Powered by Google App Engine
This is Rietveld 408576698