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

Side by Side Diff: polymer_0.5.4/bower_components/web-animations-js/test/blink/get-css-players.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="testharness/testharness.js"></script> 2 <script src="testharness/testharness.js"></script>
3 <script src="testharness/testharnessreport.js"></script> 3 <script src="testharness/testharnessreport.js"></script>
4 <style> 4 <style>
5 @keyframes test { 5 @keyframes test {
6 from { opacity: 0; } 6 from { opacity: 0; }
7 to { opacity: 1; } 7 to { opacity: 1; }
8 } 8 }
9 .cssAnimation { 9 .cssAnimation {
10 animation: test 2s; 10 animation: test 2s;
(...skipping 20 matching lines...) Expand all
31 players[0].finish(); 31 players[0].finish();
32 assert_equals(document.timeline.getAnimationPlayers().length, 0); 32 assert_equals(document.timeline.getAnimationPlayers().length, 0);
33 assert_equals(container.getAnimationPlayers().length, 0); 33 assert_equals(container.getAnimationPlayers().length, 0);
34 assert_equals(element.getAnimationPlayers().length, 0); 34 assert_equals(element.getAnimationPlayers().length, 0);
35 t.done(); 35 t.done();
36 }); 36 });
37 } 37 }
38 }, 'getAnimationPlayers() with cssanimations'); 38 }, 'getAnimationPlayers() with cssanimations');
39 39
40 </script> 40 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698