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

Unified Diff: LayoutTests/transforms/rotate-expected.html

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 5 years, 6 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
« no previous file with comments | « LayoutTests/transforms/rotate.html ('k') | LayoutTests/transforms/rotate-parsing.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/transforms/rotate-expected.html
diff --git a/LayoutTests/transforms/rotate-expected.html b/LayoutTests/transforms/rotate-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..43b1743100339878e19452df12d9d42bf3fc4c1d
--- /dev/null
+++ b/LayoutTests/transforms/rotate-expected.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<style>
+div {
+ width: 100px;
+ height: 100px;
+ background-color: blue;
+ transform-origin: 50% 50%;
+}
+.container {
+ transform: rotate(45deg);
+ background-color: red;
+ perspective-origin: 150% 150%;
+ perspective: 500px;
+}
+#box1 {
+ transform: rotate(45deg);
+}
+#box2 {
+ transform: rotate3d(1,0,0,50deg) translate(200px);
+}
+#box3 {
+ transform: rotate3d(1, -2.5, 4, 30deg) translate(200px);
+}
+#box4 {
+ transform: rotate3d(0, 0, 0, 45deg);
+}
+</style>
+
+<div class="container">
+ <div id="box1">1</div>
+ <div id="box2">2</div>
+</div>
+<div id="box3">3</div>
+<div id="box4">4</div>
« no previous file with comments | « LayoutTests/transforms/rotate.html ('k') | LayoutTests/transforms/rotate-parsing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698