Index: bower_components/web-animations-js/test/testcases/auto-test-circular-path.html |
diff --git a/bower_components/web-animations-js/test/testcases/auto-test-circular-path.html b/bower_components/web-animations-js/test/testcases/auto-test-circular-path.html |
deleted file mode 100644 |
index a8e7acca1f1e91634707684ddd94b8805355ce3f..0000000000000000000000000000000000000000 |
--- a/bower_components/web-animations-js/test/testcases/auto-test-circular-path.html |
+++ /dev/null |
@@ -1,83 +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> |
-.animation { |
- position: absolute; |
- width: 25px; |
- height: 25px; |
- top: 0px; |
- left: 0px; |
- background: lightsteelblue; |
-} |
-.expectation { |
- background: red; |
- position: absolute; |
- width: 25px; |
- height: 25px; |
- top: 0px; |
- left: 0px; |
-} |
-#e { |
- -webkit-transform: translate(117.5px, 87.5px); |
- transform: translate(117.5px, 87.5px); |
-} |
-svg { |
-position:absolute; |
-top: 0px; |
-left: 0px; |
-width: 800px; |
-height: 600px; |
-} |
-</style> |
- |
-<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> |
- <path id="path" d="M 130,100 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0 " /> |
- <path d="M 130,100 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0 " |
- stroke="black" stroke-width="1" fill="none" /> |
- <path d="M 260,200 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0 " |
- stroke="black" stroke-width="1" fill="none" /> |
- <path d="M 390,300 a 75,75 0 1,0 150,0 a 75,75 0 1,0 -150,0 " |
- stroke="black" stroke-width="1" fill="none" /> |
-</svg> |
- |
-<div id="e" class="expectation"></div> |
-<div id="anim" class="animation">→</div> |
- |
-<script> |
-var expected_failures = [ |
- { |
- browser_configurations: [ |
- { firefox: true }, |
- { msie: true }, |
- ], |
- tests: ['Auto generated tests'], |
- message: 'Doesn\'t quite follow path correctly.', |
- } |
-]; |
-</script> |
-<script src="../bootstrap.js"></script> |
-<script> |
-"use strict"; |
- |
-var options = {autoRotate: 'auto-rotate', iterationComposite: 'accumulate'}; |
-var animFunc = new MotionPathEffect( |
- document.querySelector('#path').pathSegList, options); |
-document.timeline.play(new Animation(document.querySelector("#anim"), |
- animFunc, {duration: 7 * 1000, iterations: 3})); |
- |
-</script> |