Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / backgrounds / transformed-html-body-background.html
blobf798ec1c81605d023cecaa3600aced39f22fdbe9
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
6 html {
7 transform: rotate(20deg);
8 -webkit-transform-origin: top left;
11 body {
12 background-color: silver;
13 overflow: hidden;
16 .contents {
17 height: 1200px;
18 width: 100%;
19 border: 1px solid black;
21 </style>
22 <script>
23 if (window.testRunner)
24 testRunner.dumpAsTextWithPixelResults();
25 </script>
26 </head>
27 <body>
28 <div class="contents"></div>
29 </body>
30 </html>