summaryrefslogtreecommitdiffstats
path: root/layout/reftests/abs-pos/fixed-pos-auto-offset-1b.html
blob: f450bb4a2a8144f12f5d99259138e6fcf74186ec (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>
  <!-- Important: no meta charset! -->
  <title>Testcase Bug 851514</title>
  <style>
  #parent {
    position: fixed;
    height: 30px;
    width: 30px;
    background: green;
    left: 70px;
    top: 70px;
    overflow: hidden;
  }
  #child {
    position: fixed;
    top: auto;
    left: auto;
    width: 10px;
    height: 10px;
    background: purple;
  }
  </style>
</head>
<body>
  <div id="parent">
    <div id="child"></div>
  </div>
  The purple block should be inside the green block.
</body>
</html>