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

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/scale-expected.html

Issue 2623453002: CSS scale property: scale with one value only affects X (Closed)
Patch Set: rebase Created 3 years, 11 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 div { 3 div {
4 width: 100px; 4 width: 100px;
5 height: 100px; 5 height: 100px;
6 background-color: blue; 6 background-color: blue;
7 } 7 }
8 .container { 8 .container {
9 background-color: red; 9 background-color: red;
10 perspective-origin: 150% 150%; 10 perspective-origin: 150% 150%;
11 perspective: 500px; 11 perspective: 500px;
12 transform: scale(0.5, 1); 12 transform: scale(0.5, 1);
13 } 13 }
14 #box1 { 14 #box1 {
15 transform: scale(0.5, 1); 15 transform: scale(0.5, 1);
16 } 16 }
17 #box2a { 17 #box2a {
18 transform: scale3d(-2, 3.5, 0.2) translate(400px); 18 transform: scale3d(-2, 3.5, 0.2) translate(400px);
19 } 19 }
20 #box2b { 20 #box2b {
21 backface-visibility: visible; 21 backface-visibility: visible;
22 transform: scale3d(-2, 3.5, 0.2) translate(400px); 22 transform: scale3d(-2, 3.5, 0.2) translate(400px);
23 } 23 }
24 #box3 { 24 #box3 {
25 transform: scale3d(2, 3.5, 0.2) translate(200px, 100px); 25 transform: scale3d(2, 3.5, 0.2) translate(200px, 100px);
26 } 26 }
27 #box4 { 27 #box4 {
28 transform: scale(2) translate(50px, 100px); 28 transform: scale(2, 1) translate(50px, 100px);
29 } 29 }
30 </style> 30 </style>
31 31
32 <div class="container"> 32 <div class="container">
33 <div id="box1">1</div> 33 <div id="box1">1</div>
34 <div id="box2a">2a</div> 34 <div id="box2a">2a</div>
35 <div id="box2b">2b</div> 35 <div id="box2b">2b</div>
36 </div> 36 </div>
37 <div id="box3">3</div> 37 <div id="box3">3</div>
38 <div id="box4">4</div> 38 <div id="box4">4</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698