Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / transforms / identity-matrix.html
1  <head>
2 <style>
3         div {
4             float:left;
5             width:100px;
6             height:100px;
7             background-color:skyblue;
8             border: 5px solid black;
9             margin:5px;
10         }
11         .matrix{ transform: matrix(1, 0, 0, 1, 0, 0); }
12 </style>
13 </head>
14 <body>
15 The following divs should be identical:
16     <br>
17
18     <div></div>
19     <div class="matrix"></div>
20 </body>