Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / outline / outline-overflow-inlineblock-abspos.html
blob284b52370e27059ee4bcd21ca52a4af16f78e5b3
1 <!DOCTYPE HTML>
2 <title>outline doesn't go around overflowing abspos descendants</title>
3 <style>
5 html, body { margin: 0; padding: 0; border: none }
6 html { overflow:hidden /* avoid second reflow for scrollbars */ }
8 body > div {
9 margin: 100px;
10 outline: 2px solid blue;
11 display: inline-block;
12 height: 50px;
13 width: 50px;
14 position: relative;
17 body > div > div {
18 position: absolute;
19 top: 0;
20 left: 0;
21 width: 100px;
22 height: 100px;
25 </style>
26 <body>
27 <div><div></div></div>