Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / transforms / rotated-transform-affects-scrolling-1.html
1 <html>
2 <head>
3 <style>
4     body { overflow: hidden; }
5     #rotate {
6         width: 1300px;
7         height: 100px;
8         background-color: purple;
9         -webkit-transform:rotate(110deg);
10         border-left: 2px solid red;
11         border-top: 2px solid blue;
12         border-right: 2px solid cyan;
13         border-bottom: 2px solid green;
14     }
15 </style>
16 <script>
17 if (window.internals)
18     window.internals.settings.setForceCompositingMode(true);
19 </script>
20 </head>
21
22 <body>
23
24     <div id="rotate"></div>
25
26 </body>
27 </html>