1
0
Fork 0
firefox/testing/web-platform/tests/compat/webkit-box-fixed-position-child.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

17 lines
504 B
HTML

<!doctype html>
<title>Verifies changing 'display' with a fixed position webkit-box that
has a fixed position child</title>
<body>
<div id="outer" style="position:fixed;">
<div style="display:-webkit-box; float:left; padding-left:100%;">
<div style="position:fixed; width:100px; height:100px;"></div>
</div>
<div style="display:inline-block; width:100px; height:20px;"></div>
</div>
<div id="elm"></div>
A
</body>
<script>
document.body.offsetTop;
elm.style.display = 'none';
</script>