summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-dotted/1752624-ref.html
blob: 7d465c930b6efa9639deabdac8495d278c438072 (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
33
34
<!DOCTYPE html>
<html>
<style>
#offset {
  position: absolute;
  left: 10px;
  top: -150px;
  width: 100px;
  height: 100px;
  border: 1px solid red;
}
#outline-box {
  width: 100px;
  height: 100px;
  position: relative;
}
#overflow-box {
  border: 4px solid blue;
  width: 10px;
  height: 400px;
  left: 10px;
  top: 100px;
  position: absolute;
}
</style>
<body>
<div id="offset">
<div id="outline-box">
<div id="overflow-box">
</div>
</div>
</div>
</body>
</html>