summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/transforms/identity-matrix.html
blob: d785b90439e70c9253d98290a280176f6c2d1ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 <head>
<style>
        div {
            float:left;
            width:100px;
            height:100px;
            background-color:skyblue;
            border: 5px solid black;
            margin:5px;
        }
        .matrix{ transform: matrix(1, 0, 0, 1, 0, 0); }
</style>
</head>
<body>
The following divs should be identical:
    <br>

    <div></div>
    <div class="matrix"></div>
</body>