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

Side by Side Diff: LayoutTests/transforms/combine-transforms-properties-motion-path-expected.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 #actual {
13 background-color: green;
14 transform: translate(240px, 30px) rotate(90deg) scale(1, 2);
15 }
16 </style>
17 </head>
18
19 <body>
20 <p>There should be no red color boxes</p>
21 <div id="actual"></div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698