blob: 67c3e81617b5f9c7539a9476680f912e95b514d3 [file] [log] [blame]
<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>