1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/chrome-body-overflow-propagation-crash.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
417 B
HTML

<!doctype html>
<title>CSS Overflow Test: Chrome scrollbar crash - multiple body elements, removed stylesheet</title>
<style id="sheet">
</style>
<style>
body {
overflow: scroll;
width: 100px;
height: 100px;
}
</style>
<body>Pass if no crash</body>
<script>
document.body.offsetTop;
sheet.remove();
document.documentElement.insertBefore(document.createElement("body"), document.body);
</script>