| Index: bower_components/web-animations-js/test/testcases/unit-test-clone.html
|
| diff --git a/bower_components/web-animations-js/test/testcases/unit-test-clone.html b/bower_components/web-animations-js/test/testcases/unit-test-clone.html
|
| deleted file mode 100644
|
| index 55c7042484259bf7e5343cc731043503bf70a7a9..0000000000000000000000000000000000000000
|
| --- a/bower_components/web-animations-js/test/testcases/unit-test-clone.html
|
| +++ /dev/null
|
| @@ -1,80 +0,0 @@
|
| -<!--
|
| -Copyright 2013 Google Inc. All Rights Reserved.
|
| -
|
| -Licensed under the Apache License, Version 2.0 (the "License");
|
| -you may not use this file except in compliance with the License.
|
| -You may obtain a copy of the License at
|
| -
|
| - http://www.apache.org/licenses/LICENSE-2.0
|
| -
|
| -Unless required by applicable law or agreed to in writing, software
|
| -distributed under the License is distributed on an "AS IS" BASIS,
|
| -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| -See the License for the specific language governing permissions and
|
| -limitations under the License.
|
| --->
|
| -
|
| -<!DOCTYPE html><meta charset="UTF-8">
|
| -<div id="anim"></div>
|
| -
|
| -<script src="../bootstrap.js"></script>
|
| -<script>
|
| -"use strict";
|
| -
|
| -var elem = document.getElementById("anim");
|
| -var animFunc = {left: "100px"};
|
| -
|
| -// Animation
|
| -var anim = new Animation(elem, animFunc, 1.0);
|
| -var clone = anim.clone();
|
| -test(function() {assert_true(clone instanceof Animation)},
|
| - "Clone should be an Animation");
|
| -test(function() {assert_equals(clone.timing.duration, 1.0)},
|
| - "Clone should take Timing.duration");
|
| -test(function() {assert_equals(clone.target, elem)},
|
| - "Clone should take target");
|
| -
|
| -// AnimationGroup
|
| -var animationGroup = new AnimationGroup([anim, clone], 4.0);
|
| -var animationGroupClone = animationGroup.clone();
|
| -test(function() {assert_true(animationGroupClone instanceof AnimationGroup, true)},
|
| - "AnimationGroup clone should be a AnimationGroup");
|
| -test(function() {assert_equals(animationGroupClone.timing.duration, 4.0)},
|
| - "AnimationGroup clone should take Timing.duration");
|
| -test(function() {assert_equals(animationGroupClone.children.length, 2)},
|
| - "AnimationGroup clone should clone children");
|
| -test(function() {assert_not_equals(animationGroupClone.children[0], anim)},
|
| - "AnimationGroup clone should clone first child");
|
| -test(function() {assert_equals(animationGroupClone.children[0].duration, 1.0)},
|
| - "AnimationGroup clone should clone first child's duration");
|
| -test(function() {assert_not_equals(animationGroupClone.children[1], clone)},
|
| - "AnimationGroup clone should clone second child");
|
| -test(function() {assert_equals(animationGroupClone.children[1].duration, 1.0)},
|
| - "AnimationGroup clone should clone second child's duration");
|
| -
|
| -// AnimationSequence
|
| -var animationSequence = new AnimationSequence([anim, clone], 6.0);
|
| -var animationSequenceClone = animationSequence.clone();
|
| -test(function() {assert_true(animationSequenceClone instanceof AnimationSequence)},
|
| - "AnimationSequence clone should be a AnimationSequence");
|
| -test(function() {assert_equals(animationSequenceClone.timing.duration, 6.0)},
|
| - "AnimationSequence clone should take Timing.duration");
|
| -test(function() {assert_equals(animationSequenceClone.children.length, 2)},
|
| - "AnimationSequence clone should clone children");
|
| -test(function() {assert_not_equals(animationSequenceClone.children[0], anim)},
|
| - "AnimationSequence clone should clone first child");
|
| -test(function() {assert_equals(animationSequenceClone.children[0].duration, 1.0)},
|
| - "AnimationSequence clone should clone first child's duration");
|
| -test(function() {assert_not_equals(animationSequenceClone.children[1], clone)},
|
| - "AnimationSequence clone should clone second child");
|
| -test(function() {assert_equals(animationSequenceClone.children[1].duration, 1.0)},
|
| - "AnimationSequence clone should clone second child's duration");
|
| -
|
| -// Child
|
| -var childClone = anim.clone();
|
| -test(function() {assert_equals(anim.parent, animationSequence)},
|
| - "Child clone should not equal animationSequence");
|
| -test(function() {assert_equals(childClone.parent, null)},
|
| - "Child clone should not take parent");
|
| -
|
| -</script>
|
|
|