| Index: bower_components/web-animations-js/test/testcases/unit-test-delay.html
|
| diff --git a/bower_components/web-animations-js/test/testcases/unit-test-delay.html b/bower_components/web-animations-js/test/testcases/unit-test-delay.html
|
| deleted file mode 100644
|
| index 4a2e5bb3d9f41adcd137d57dc1fdfc7efdc6b45a..0000000000000000000000000000000000000000
|
| --- a/bower_components/web-animations-js/test/testcases/unit-test-delay.html
|
| +++ /dev/null
|
| @@ -1,66 +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 anim1 = new Animation(document.getElementById("anim"), {left: "100px"},
|
| - {iterations: 3.0, duration: 1.0});
|
| -var anim2 = new Animation(document.getElementById("anim"), {left: "100px"},
|
| - {duration: 2.0});
|
| -var animationGroup = new AnimationGroup([anim1, anim2]);
|
| -
|
| -function expectDuration(anim, duration, error) {
|
| - test(function() {assert_equals(anim.activeDuration, duration)}, error);
|
| -}
|
| -
|
| -function expectEndTime(anim, endTime, error) {
|
| - test(function() {assert_equals(anim.endTime, endTime)}, error);
|
| -}
|
| -
|
| -expectDuration(anim1, 3.0, "Animation 1 duration should match specified value");
|
| -expectDuration(anim2, 2.0, "Animation 2 duration should match specified value");
|
| -expectDuration(animationGroup, 3.0,
|
| - "AnimationGroup duration should be max of childrens' end times");
|
| -anim1.timing.delay = 2.0;
|
| -expectDuration(anim1, 3.0, "Animation 1 duration should not include delay");
|
| -expectEndTime(anim1, 5.0, "Animation 1 end time should include delay");
|
| -expectDuration(animationGroup, 5.0,
|
| - "AnimationGroup duration should still be max of childrens' end times");
|
| -anim2.timing.endDelay = 4.0;
|
| -expectDuration(anim2, 2.0, "Animation 2 duration should not include endDelay");
|
| -expectEndTime(anim2, 6.0, "Animation 2 end time should include endDelay");
|
| -expectDuration(animationGroup, 6.0,
|
| - "AnimationGroup duration should STILL be max of childrens' end times");
|
| -
|
| -var animationSequence = new AnimationSequence([anim1, anim2]);
|
| -expectDuration(animationSequence, 11.0,
|
| - "AnimationSequence duration should be sum of childrens' total durations");
|
| -expectEndTime(anim2, 11.0, "Animation 2 end time should include Animation 1");
|
| -anim1.timing.delay = 4.0;
|
| -expectEndTime(anim2, 13.0,
|
| - "Animation 2 end time should be updated by changes to animation 1 delay");
|
| -anim1.timing.endDelay = 3.0;
|
| -expectDuration(anim1, 3.0, "Animation 1 duration should not include endDelay");
|
| -expectEndTime(anim1, 10.0, "Animation 1 end time should include endDelay");
|
| -expectEndTime(anim2, 16.0, "Animation 2 end time should include Animation 1 endDelay");
|
| -expectDuration(animationSequence, 16.0,
|
| - "AnimationSequence duration should still be sum of childrens' total durations");
|
| -</script>
|
|
|