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

Unified Diff: third_party/WebKit/LayoutTests/transforms/rotate.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/rotate.html
diff --git a/third_party/WebKit/LayoutTests/transforms/rotate.html b/third_party/WebKit/LayoutTests/transforms/rotate.html
index b0b1fe9a2e27709ef81071627c572463773cdb92..665afbffd37058a00f9b1e3c7383fdf37296564e 100644
--- a/third_party/WebKit/LayoutTests/transforms/rotate.html
+++ b/third_party/WebKit/LayoutTests/transforms/rotate.html
@@ -17,14 +17,14 @@ div {
}
#box2 {
transform: translate(200px);
- rotate: 50deg 1 0 0;
+ rotate: 1 0 0 50deg;
}
#box3 {
transform: translate(200px);
- rotate: 30deg 1 -2.5 4;
+ rotate: 1 -2.5 4 30deg;
}
#box4 {
- rotate: 45deg 0 0 0;
+ rotate: 0 0 0 45deg;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698