Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html - WPT Dashboard Interop Dashboard
<!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">
<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>