Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / scaling / tiled-layer-recursion.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5   <style>
6     .composited {
7       background-color: green;
8       width: 200px;
9       height: 1333px;
10       transform: translateZ(0);
11     }
12   </style>
13   <script>
14     if (window.testRunner)
15       testRunner.dumpAsTextWithPixelResults();
16
17     function scalePage()
18     {
19       if (window.eventSender)
20         window.eventSender.setPageScaleFactor(1.50025, 0, 0);
21     }
22   
23     window.addEventListener('load', scalePage, false);
24   </script>
25 </head>
26 <body>
27   <!-- This test should not crash. -->
28   <div class="composited"></div>
29 </body>
30 </html>