summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/514917-1.html
blob: 5f7ec084a1d94c1f23943d925a4191ad74acb878 (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
<!DOCTYPE HTML>
<title>Testcase, bug 514917</title>
<style type="text/css">

body > div {
  overflow: auto; /* to detect too much overflow, which is the bug here */
  width: 200px;
  height: 200px;
}

body > div > div {
  width: 100px;
  height: 100px;
  box-shadow: blue 50px 50px;
}

body > div > div > div {
  width: 160px;
  height: 160px;
  border: medium solid;
}

</style>
<body>
<div><div><div></div></div></div>
</body>