summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position-non-composited-expected.html
blob: bb886c46dadcbf585751380c45abf49f9a558e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<style>
#settings {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 10px;
  z-index:2;
  background-color:red;
}

#header {
  width:200px;
  height:20px;
  position:fixed;
  right:100px;
  top:100px;
  z-index:3;
  background-color:green;
}
</style>
</head>

<body style="width:1000px;height:2000px;">
<div id="settings"  >
 <div id="header">scroll offset is 1
    </div>
</div>
</body>
</html>