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

Side by Side Diff: LayoutTests/transforms/rotate.html

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Correct equality operators and remove dependencies on size() in parser 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <style>
4 div {
5 width: 100px;
6 height: 100px;
7 background-color: blue;
8 transform-origin: 50% 50%;
9 }
10 .container {
11 rotate: 45deg;
12 background-color: red;
13 perspective-origin: 150% 150%;
14 perspective: 500px;
15 }
16 #box1 {
17 rotate: inherit;
18 }
19 #box2 {
20 transform: translate(200px);
21 rotate: 50deg 1 0 0;
22 }
23 #box3 {
24 transform: translate(200px);
25 rotate: 30deg 1 -2.5 0;
Eric Willigers 2015/06/11 02:15:19 Perhaps replace final 0, e.g. with 4.
soonm 2015/06/11 23:31:03 Done.
26 }
27 </style>
28 </head>
29
30 <body>
31 <div class="container">
32 <div id="box1">1</div>
33 <div id="box2">2</div>
34 </div>
35 <div id="box3">3</div>
36 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698