blob: 7c18306acce02dacfc7709f0e6512e14795dcb96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<head>
<style>
body {
transform: rotate(20deg);
-webkit-transform-origin: top left;
background-color: silver;
overflow: hidden;
}
.contents {
height: 1200px;
width: 100%;
border: 1px solid black;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
</script>
</head>
<body>
<div class="contents"></div>
</body>
</html>
|