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

Side by Side Diff: LayoutTests/transforms/combine-transforms-properties-transform.html

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add combined tests with motion-path and transform 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 <html>
3 <head>
4 <style>
5 div {
6 width: 100px;
7 height: 100px;
8 position: absolute;
9 transform-origin: 50% 50%;
10 }
11
12 #target {
13 background-color: red;
14 translate: 200px 10px;
15 rotate: 90deg;
16 scale: 1 2;
17 transform: translate(10px, 20px) rotate(90deg) scale(1, 0.5);
18 }
19 #actual {
20 background-color: green;
21 transform: translate(200px, 10px) rotate(90deg) scale(1, 2) translate(10px, 20px) rotate(90deg) scale(1, 0.5);
22 }
23 </style>
24 </head>
25
26 <body>
27 <p>There should be no red color boxes</p>
28 <div id="target"></div>
29 <div id="actual"></div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698