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

Side by Side Diff: LayoutTests/transforms/translate.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 }
9 .container {
10 translate: 100px 100px;
11 background-color: red;
12 perspective-origin: 150% 150%;
13 perspective: 500px;
14 }
15 #box1 {
16 translate: inherit;
17 }
18 #box2 {
19 translate: 100% -200% -500px;
20 }
21 #box3 {
22 translate: 300px;
23 }
24 </style>
25 </head>
26
27 <body>
28 <div class="container">
29 <div id="box1">1</div>
30 <div id="box2">2</div>
31 </div>
32 <div id="box3">3</div>
33 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698