Index: bower_components/web-animations-js/test/testcases/auto-test-timing-functions.html |
diff --git a/bower_components/web-animations-js/test/testcases/auto-test-timing-functions.html b/bower_components/web-animations-js/test/testcases/auto-test-timing-functions.html |
deleted file mode 100644 |
index d7fd3059855b397d5535f75b139fe11478a75a35..0000000000000000000000000000000000000000 |
--- a/bower_components/web-animations-js/test/testcases/auto-test-timing-functions.html |
+++ /dev/null |
@@ -1,77 +0,0 @@ |
-<!-- |
-Copyright 2012 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"> |
-<style> |
-.anim { |
- left: 0px; |
- width: 200px; |
- height: 24px; |
- background-color: lightsteelblue; |
- position: relative; |
- border-bottom: solid white 1px; |
-} |
- |
-#expectation { |
- position: absolute; |
- left: 200px; |
- width: 200px; |
- height: 275px; |
- background: red; |
-} |
-body { margin: 0px; } |
-</style> |
- |
-<div id="expectation"></div> |
- |
-<div> |
- <div id="a" class="anim">(default)</div> |
- <div class="anim test" id="b">ease-in</div> |
- <div class="anim test" id="c">ease-out</div> |
- <div class="anim test" id="d">cubic-bezier(0, 0.2, 0.8, 1)</div> |
- <div class="anim test" id="e">steps(3, start)</div> |
- <div class="anim test" id="f">steps(3, middle)</div> |
- <div class="anim test" id="g">steps(3, end)</div> |
- <div class="anim test" id="h">cubic-bezier(0.5, -1.5, 0.5, 2.5)</div> |
- <div class="anim test" id="i">step-start</div> |
- <div class="anim test" id="j">step-middle</div> |
- <div class="anim test" id="k">step-end</div> |
-</div> |
- |
-<div style="height:50px"></div> |
- |
-<script> |
-var expected_failures = [ |
- { |
- browser_configurations: [{ msie: true }], |
- tests: ['Autogenerated at t=(1200.0*1|1600|2000)ms'], |
- message: 'Returns matrix3d.', |
- } |
-]; |
-</script> |
-<script src="../bootstrap.js"></script> |
-<script> |
-"use strict"; |
- |
-document.timeline.play(new Animation(document.querySelector("#a"), |
- {left: "200px"}, {delay: 1 * 1000, duration: 2 * 1000, fill: 'forwards'})); |
-var elems = document.querySelectorAll(".test"); |
-for (var i = 0; i < elems.length; i++) { |
- var element = elems[i]; |
- document.timeline.play(new Animation(element, {left: "200px"}, |
- {delay: 1 * 1000, duration: 2 * 1000, easing: element.textContent, fill: 'forwards'})); |
-} |
-</script> |