Files
sousa-gecko/layout/reftests/transform/snapping-1.html
T
2023-10-02 12:36:17 +00:00

20 lines
335 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div {
background: red;
margin-left: 100.5px;
height: 100px;
width: 100px;
transform-origin: bottom left;
transform: rotate(-90deg) translate(-100px, 0);
transform-origin: bottom left;
transform: rotate(-90deg) translate(-100px, 0);
}
</style>
</head>
<body>
<div></div>
</html>