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

Side by Side Diff: third_party/WebKit/LayoutTests/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
1 <head> 1 <head>
2 <style> 2 <style>
3 div { 3 div {
4 width:100px; 4 width:100px;
5 height:100px; 5 height:100px;
6 background-color:skyblue; 6 background-color:skyblue;
7 float:left; 7 float:left;
8 border: 5px solid black; 8 border: 5px solid black;
9 margin:5px; 9 margin:5px;
10 } 10 }
11 11
12 .rotated { 12 .rotated {
13 transform: rotate(45deg); 13 transform: rotate(45deg);
14 } 14 }
15 </style> 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> 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 17
18 <div></div> 18 <div></div>
19 19
20 <div class="rotated"></div> 20 <div class="rotated"></div>
21 21
22 <div></div> 22 <div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698