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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/transforms/rotated-transform-affects-scrolling-2.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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 <html>
2 <head>
3 <style>
4 body { overflow: hidden; }
5 #rotate {
6 width: 1300px;
7 height: 100px;
8 background-color: purple;
9 transform:rotate(80deg);
10 border-left: 2px solid red;
11 border-top: 2px solid blue;
12 border-right: 2px solid cyan;
13 border-bottom: 2px solid green;
14 }
15 </style>
16 </head>
17
18 <body>
19
20 <div id="rotate"></div>
21
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698