1
0
Fork 0
firefox/testing/web-platform/tests/css/css-position/sticky/position-sticky-scroll-offset-clamp-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

20 lines
481 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1498297">
<style>
* {
margin-top: 100px;
padding-left: 100px;
position: sticky;
bottom: 0px;
}
</style>
<select id="select1" multiple="multiple" style="writing-mode: vertical-rl">
<optgroup id="optgroup">text</optgroup>
</select>
<select id="select2" >text</select>
<script>
document.body.offsetTop;
select2.add(optgroup);
document.body.offsetTop;
select1.length = 1;
</script>