Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / geometry / fixed-position-composited-page-scale.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .fixed-no-z-index {
6   position: absolute;
7   left: 10px;
8 }
9 .fixed-with-z-index {
10   position: fixed;
11   z-index: 1;
12   left: 10px;
13 }
14 </style>
15 <script>
16   if (window.internals && window.eventSender) {
17     window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
18     window.eventSender.setPageScaleFactor(2, 0, 0);
19   }
20   if (window.testRunner)
21     testRunner.dumpAsTextWithPixelResults();
22 </script>
23 </head>
24 <body style="width:2000px;height:2000px;">
25 <div class="fixed-no-z-index">TEST</div><br>
26 <div class="fixed-with-z-index">TEST</div>
27 </body>
28 </html>