1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/mixed-containing-blocks-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

13 lines
682 B
HTML

<!DOCTYPE html>
<title>CSS Flexbox: Mixed containing blocks</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox">
<link rel="help" href="https://github.com/servo/servo/issues/36121">
<meta name="assert" content="This test ensures that flex boxes that establish a containing block for fixed position descendants do not cause a crash when combined with flex items that establish a containing block for absolutely positioned descendants.">
<html>
<div class="box" style="display: flex; flex-direction: column; transform: translateX(1px)">
<div style="position: relative;"><div>Three</div><div style="position: absolute">fixed</div></div>
</div>
</div>