1
0
Fork 0
firefox/layout/reftests/outline/outline-overflow-inlineblock-abspos.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
490 B
HTML

<!DOCTYPE HTML>
<title>outline doesn't go around overflowing abspos descendants</title>
<style>
html, body { margin: 0; padding: 0; border: none }
html { overflow:hidden /* avoid second reflow for scrollbars */ }
body > div {
margin: 100px;
outline: 2px solid blue;
display: inline-block;
height: 50px;
width: 50px;
position: relative;
}
body > div > div {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
}
</style>
<body>
<div><div></div></div>