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

Unified Diff: third_party/WebKit/LayoutTests/animations/rotate-transform-equivalent.html

Issue 2531753002: CSS Independent Transform Properties: support rotate: <axes> <angle> (Closed)
Patch Set: tests Created 4 years, 1 month 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/rotate-transform-equivalent.html
diff --git a/third_party/WebKit/LayoutTests/animations/rotate-transform-equivalent.html b/third_party/WebKit/LayoutTests/animations/rotate-transform-equivalent.html
index 057953dfbe71a65ad381f8435ba2adab32f13cb4..628eddc8413d129d67acbd88759f99d97362088f 100644
--- a/third_party/WebKit/LayoutTests/animations/rotate-transform-equivalent.html
+++ b/third_party/WebKit/LayoutTests/animations/rotate-transform-equivalent.html
@@ -16,14 +16,14 @@ There should be no red visible.
<div class="target" id="transform">F</div>
<script>
var timing = {fill: 'forwards', iterations: 0.75};
-rotateAdd.style.rotate = '90deg 1 0 0';
+rotateAdd.style.rotate = '1 0 0 90deg';
rotateAdd.animate([
- {rotate: '-180deg 0 1 0', composite: 'add'},
- {rotate: '90deg 0 0 1'},
+ {rotate: '0 1 0 -180deg', composite: 'add'},
+ {rotate: '0 0 1 90deg'},
], timing);
rotateReplace.animate([
- {rotate: '180deg 0 -0.707107 -0.707107'},
- {rotate: '90deg 0 0 1'},
+ {rotate: '0 -0.707107 -0.707107 180deg'},
+ {rotate: '0 0 1 90deg'},
], timing);
transform.animate([
{transform: 'rotate3d(1, 0, 0, 90deg) rotate3d(0, 1, 0, -180deg)'},

Powered by Google App Engine
This is Rietveld 408576698