1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-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

18 lines
839 B
HTML

<!DOCTYPE html>
<title>CSS Flexbox: Crash for flex box with relpos with scrollable with abspos</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@opera.com">
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#flex-container">
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollable-overflow">
<link rel="issue" href="https://crbug.com/498969">
<meta name="assert" content="Check that crash doesn't happen in flex box with descendents that include relpos, overflow:auto scrollbars, and abspos.">
<div style="display:flex;">
<div>
<div style="position:relative; width:5em;">
<div style="overflow:auto;">
<div>xxxxxxxxxxxxxxxxxxxxxx</div>
<div style="position:absolute;"></div>
</div>
</div>
</div>
</div>