haikuwebkit/LayoutTests/fast/transforms/rotated-transform-affects-s...

23 lines
384 B
HTML

<html>
<head>
<style>
#rotate {
width: 1300px;
height: 100px;
background-color: purple;
-webkit-transform:rotate(80deg);
border-left: 2px solid red;
border-top: 2px solid blue;
border-right: 2px solid cyan;
border-bottom: 2px solid green;
}
</style>
</head>
<body>
<div id="rotate"></div>
</body>
</html>