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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/transforms/diamond.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 <head>
2 <style>
3 div {
4 width:100px;
5 height:100px;
6 background-color:skyblue;
7 float:left;
8 border: 5px solid black;
9 margin:5px;
10 }
11
12 .rotated {
13 transform: rotate(45deg);
14 }
15 </style>
16 <p>You should see three blocks below. The middle one should look like a diamond because it has been rotated 45 degrees.</p>
17
18 <div></div>
19
20 <div class="rotated"></div>
21
22 <div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698