Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / transforms / diamond.html
blob88393ad8a924797c7d1fb9588c52c8f240c159f2
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;
12 .rotated {
13 transform: rotate(45deg);
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>
18 <div></div>
20 <div class="rotated"></div>
22 <div></div>