Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / fixed-position-composited-page-scale.html
blob8a34961e922df2f0575877e927beb4429eeeaf84
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 ::-webkit-scrollbar {
6 width: 0px;
7 height: 0px;
9 .fixed-no-z-index {
10 position: absolute;
11 left: 10px;
13 .fixed-with-z-index {
14 position: fixed;
15 z-index: 1;
16 left: 10px;
18 </style>
19 <script>
20 if (window.internals && window.eventSender) {
21 window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
22 window.internals.setPageScaleFactor(2);
24 if (window.testRunner)
25 testRunner.dumpAsTextWithPixelResults();
26 </script>
27 </head>
28 <body style="width:2000px;height:2000px;">
29 <div class="fixed-no-z-index">TEST</div><br>
30 <div class="fixed-with-z-index">TEST</div>
31 </body>
32 </html>