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); |