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

Unified Diff: polymer_0.5.4/bower_components/web-animations-js/test/js/animation-node.js

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, 11 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.4/bower_components/web-animations-js/test/js/animation-node.js
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/js/animation-node.js b/polymer_0.5.4/bower_components/web-animations-js/test/js/animation-node.js
similarity index 98%
copy from polymer_0.5.0/bower_components/web-animations-js/test/js/animation-node.js
copy to polymer_0.5.4/bower_components/web-animations-js/test/js/animation-node.js
index 8165fea9883255ad6000bd291ca9f05b4f17c4fb..f5860707c2b1d021efc20d1b34c2029c5e5e7c1e 100644
--- a/polymer_0.5.0/bower_components/web-animations-js/test/js/animation-node.js
+++ b/polymer_0.5.4/bower_components/web-animations-js/test/js/animation-node.js
@@ -93,8 +93,8 @@ suite('animation-node', function() {
test('Animation Node', function() {
var timing = normalizeTimingInput({duration: 1000, iterations: 4, iterationStart: 0.5, easing: 'linear', direction: 'alternate', delay: 100, fill: 'forwards'});
var timing2 = normalizeTimingInput({duration: 1000, iterations: 4, iterationStart: 0.5, easing: 'ease', direction: 'alternate', delay: 100, fill: 'forwards'});
- var node = webAnimationsMinifill.AnimationNode(timing);
- var node2 = webAnimationsMinifill.AnimationNode(timing2);
+ var node = webAnimations1.AnimationNode(timing);
+ var node2 = webAnimations1.AnimationNode(timing2);
assert.equal(node(0), null);
assert.equal(node(100), 0.5);
assert.closeTo(node2(100), 0.8, 0.005);

Powered by Google App Engine
This is Rietveld 408576698