Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / fixed-background-negative-z-index-fixed-expected.html
blob305c766e3da5acebe5bc0618c632a8087a765eca
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
6 body {
7 height: 2000px;
8 background-image: url('resources/simple_image.png');
9 background-size: 200px 200px;
10 background-attachment: fixed;
11 overflow: hidden; /* hide scrollbar */
13 .fixed {
14 position: fixed;
15 z-index: -1;
16 top: 50px;
17 left: 50px;
18 width: 200px;
19 height: 200px;
20 background-color: silver;
22 </style>
23 </head>
24 <body>
26 <div class="fixed box"></div>
28 </body>
29 </html>