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