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

Unified Diff: third_party/polymer/components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js

Issue 592603004: Revert "Polymer elements added to third_party/polymer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: third_party/polymer/components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js
diff --git a/third_party/polymer/components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js b/third_party/polymer/components/web-animations-js/test/testcases/auto-test-perspective-origin-checks.js
deleted file mode 100644
index 2fca78df1529d3e7a11638144f7286bd091fb085..0000000000000000000000000000000000000000
--- a/third_party/polymer/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