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

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

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup 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 <style>
3 div {
4 width: 100px;
5 height: 100px;
6 background-color: blue;
7 }
8 .container {
9 background-color: red;
10 perspective-origin: 150% 150%;
11 perspective: 500px;
12 scale: 0.5 1;
alancutter (OOO until 2018) 2015/06/17 07:38:32 No test for scale with a single value?
soonm 2015/06/17 23:56:53 Done. It currently assumes that x and y use the sa
13 }
14 #box1 {
15 scale: 0.5 1;
16 }
17 #box2a {
18 scale: -2 3.5 0.2;
19 transform: translate(400px);
20 }
21 #box2b {
22 backface-visibility: visible;
23 scale: -2 3.5 0.2;
24 transform: translate(400px);
25 }
26 #box3 {
27 scale: 2 3.5 0.2;
28 transform: translate(200px, 100px);
29 }
30 </style>
31
32 <div class="container">
33 <div id="box1">1</div>
34 <div id="box2a">2a</div>
35 <div id="box2b">2b</div>
36 </div>
37 <div id="box3">3</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698