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

Unified Diff: third_party/WebKit/LayoutTests/transforms/transform-properties-mixed.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/transforms/transform-properties-mixed.html
diff --git a/third_party/WebKit/LayoutTests/transforms/transform-properties-mixed.html b/third_party/WebKit/LayoutTests/transforms/transform-properties-mixed.html
index 1d1cab136cbd10635007303340f5c73fc2871eed..c5cb39a6202cf9b24096679cc23d773f5c3d22fa 100644
--- a/third_party/WebKit/LayoutTests/transforms/transform-properties-mixed.html
+++ b/third_party/WebKit/LayoutTests/transforms/transform-properties-mixed.html
@@ -34,27 +34,27 @@
background: rgba(0, 255, 0, 1);
color: black;
translate: 0 0 -50px;
- rotate: 180deg 0 1 0;
+ rotate: 0 1 0 180deg;
}
.right {
background: rgba(196, 0, 0, 0.7);
translate: 50px 0 0;
- rotate: 90deg 0 1 0;
+ rotate: 0 1 0 90deg;
}
.left {
background: rgba(0, 0, 196, 0.7);
translate: -50px 0 0;
- rotate: -90deg 0 1 0;
+ rotate: 0 1 0 -90deg;
}
.top {
background: rgba(196, 196, 0, 0.7);
translate: 0 -50px 0;
- rotate: 90deg 1 0 0;
+ rotate: 1 0 0 90deg;
}
.bottom {
background: rgba(196, 0, 196, 0.7);
translate: 0 50px 0;
- rotate: -90deg 1 0 0;
+ rotate: 1 0 0 -90deg;
}
.scaleX {
scale: 0.5 1.0 1.0;

Powered by Google App Engine
This is Rietveld 408576698