haikuwebkit/LayoutTests/fast/transforms/identity-matrix.html

20 lines
402 B
HTML

<head>
<style>
div {
float:left;
width:100px;
height:100px;
background-color:skyblue;
border: 5px solid black;
margin:5px;
}
.matrix{ -webkit-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>