Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4301)

Unified Diff: bower_components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: bower_components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js
diff --git a/bower_components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js b/bower_components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js
deleted file mode 100644
index 2fca78df1529d3e7a11638144f7286bd091fb085..0000000000000000000000000000000000000000
--- a/bower_components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js
+++ /dev/null
@@ -1,61 +0,0 @@
-timing_test(function() {
- at(0 * 1000, function() {
- assert_styles(".test",{'perspectiveOrigin':'50px 50px'});
- });
- at(0.5 * 1000, function() {
- assert_styles(".test", [
- {'perspectiveOrigin':'37.5px 37.5px'},
- {'perspectiveOrigin':'37.5px 50px'},
- {'perspectiveOrigin':'62.5px 50px'},
- {'perspectiveOrigin':'50px 37.5px'},
- {'perspectiveOrigin':'50px 62.5px'},
- {'perspectiveOrigin':'50px 50px'},
- {'perspectiveOrigin':'37.5px 37.5px'},
- {'perspectiveOrigin':'57.5px 57.5px'},
- {'perspectiveOrigin':'42.5px 52.5px'},
- {'perspectiveOrigin':'37.5px 62.5px'},
- ]);
- });
- at(1 * 1000, function() {
- assert_styles(".test", [
- {'perspectiveOrigin':'25px 25px'},
- {'perspectiveOrigin':'25px 50px'},
- {'perspectiveOrigin':'75px 50px'},
- {'perspectiveOrigin':'50px 25px'},
- {'perspectiveOrigin':'50px 75px'},
- {'perspectiveOrigin':'50px 50px'},
- {'perspectiveOrigin':'25px 25px'},
- {'perspectiveOrigin':'65px 65px'},
- {'perspectiveOrigin':'35px 55px'},
- {'perspectiveOrigin':'25px 75px'},
- ]);
- });
- at(1.5 * 1000, function() {
- assert_styles(".test", [
- {'perspectiveOrigin':'12.5px 12.5px'},
- {'perspectiveOrigin':'12.5px 50px'},
- {'perspectiveOrigin':'87.5px 50px'},
- {'perspectiveOrigin':'50px 12.5px'},
- {'perspectiveOrigin':'50px 87.5px'},
- {'perspectiveOrigin':'50px 50px'},
- {'perspectiveOrigin':'12.5px 12.5px'},
- {'perspectiveOrigin':'72.5px 72.5px'},
- {'perspectiveOrigin':'27.5px 57.5px'},
- {'perspectiveOrigin':'12.5px 87.5px'},
- ]);
- });
- at(2 * 1000, function() {
- assert_styles(".test", [
- {'perspectiveOrigin':'0px 0px'},
- {'perspectiveOrigin':'0px 50px'},
- {'perspectiveOrigin':'100px 50px'},
- {'perspectiveOrigin':'50px 0px'},
- {'perspectiveOrigin':'50px 100px'},
- {'perspectiveOrigin':'50px 50px'},
- {'perspectiveOrigin':'0px 0px'},
- {'perspectiveOrigin':'80px 80px'},
- {'perspectiveOrigin':'20px 60px'},
- {'perspectiveOrigin':'0px 100px'},
- ]);
- });
-}, "Auto generated tests");

Powered by Google App Engine
This is Rietveld 408576698