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

Unified Diff: third_party/WebKit/LayoutTests/animations/composition/offset-rotation-composition.html

Issue 2842933003: CSS Motion Path: delete implementation of offset-rotation property (Closed)
Patch Set: remove offsetRotation from webexposed Created 3 years, 8 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/WebKit/LayoutTests/animations/composition/offset-rotation-composition.html
diff --git a/third_party/WebKit/LayoutTests/animations/composition/offset-rotation-composition.html b/third_party/WebKit/LayoutTests/animations/composition/offset-rotation-composition.html
deleted file mode 100644
index 99239449316260486437ad8faf35004db023af26..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/composition/offset-rotation-composition.html
+++ /dev/null
@@ -1,89 +0,0 @@
-<!DOCTYPE html>
-<body>
-<script src="../interpolation/resources/interpolation-test.js"></script>
-<script>
-assertComposition({
- property: 'offset-rotation',
- underlying: '20deg',
- addFrom: '10deg',
- addTo: '20deg',
-}, [
- {at: -0.3, is: '27deg'},
- {at: 0, is: '30deg'},
- {at: 0.3, is: '33deg'},
- {at: 0.6, is: '36deg'},
- {at: 1, is: '40deg'},
- {at: 1.5, is: '45deg'},
-]);
-
-assertComposition({
- property: 'offset-rotation',
- underlying: 'auto 20deg',
- addFrom: '10deg',
- addTo: '20deg',
-}, [
- {at: -0.3, is: '7deg'},
- {at: 0, is: '10deg'},
- {at: 0.3, is: '13deg'},
- {at: 0.6, is: '16deg'},
- {at: 1, is: '20deg'},
- {at: 1.5, is: '25deg'},
-]);
-
-assertComposition({
- property: 'offset-rotation',
- underlying: 'auto 20deg',
- addFrom: 'reverse 10deg',
- addTo: 'auto 20deg',
-}, [
- {at: -0.3, is: 'auto 261deg'},
- {at: 0, is: 'auto 210deg'},
- {at: 0.3, is: 'auto 159deg'},
- {at: 0.6, is: 'auto 108deg'},
- {at: 1, is: 'auto 40deg'},
- {at: 1.5, is: 'auto -45deg'},
-]);
-
-assertComposition({
- property: 'offset-rotation',
- underlying: '20deg',
- addFrom: 'reverse 10deg',
- addTo: '20deg',
-}, [
- {at: -0.3, is: 'auto 190deg'},
- {at: 0, is: 'auto 190deg'},
- {at: 0.3, is: 'auto 190deg'},
- {at: 0.6, is: '40deg'},
- {at: 1, is: '40deg'},
- {at: 1.5, is: '40deg'},
-]);
-
-assertComposition({
- property: 'offset-rotation',
- underlying: '20deg',
- replaceFrom: 'reverse 10deg',
- addTo: '20deg',
-}, [
- {at: -0.3, is: 'auto 190deg'},
- {at: 0, is: 'auto 190deg'},
- {at: 0.3, is: 'auto 190deg'},
- {at: 0.6, is: '40deg'},
- {at: 1, is: '40deg'},
- {at: 1.5, is: '40deg'},
-]);
-
-assertComposition({
- property: 'offset-rotation',
- underlying: '20deg',
- addFrom: '10deg',
- replaceTo: '10deg',
-}, [
- {at: -0.3, is: '36deg'},
- {at: 0, is: '30deg'},
- {at: 0.3, is: '24deg'},
- {at: 0.6, is: '18deg'},
- {at: 1, is: '10deg'},
- {at: 1.5, is: '0deg'},
-]);
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698