Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / fractional-scroll-offset-fixed-position-non-composited-expected.html
blobbb886c46dadcbf585751380c45abf49f9a558e2b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #settings {
6 width: 100px;
7 height: 100px;
8 position: fixed;
9 top: 10px;
10 z-index:2;
11 background-color:red;
14 #header {
15 width:200px;
16 height:20px;
17 position:fixed;
18 right:100px;
19 top:100px;
20 z-index:3;
21 background-color:green;
23 </style>
24 </head>
26 <body style="width:1000px;height:2000px;">
27 <div id="settings" >
28 <div id="header">scroll offset is 1
29 </div>
30 </div>
31 </body>
32 </html>