1
0
Fork 0
firefox/testing/web-platform/tests/css/CSS2/positioning/abspos-inline-container-in-inline-block.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
617 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#propdef-position">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div>
<span style="border: 1px solid blue">
<span style="position: relative">
<span style="display: inline-block">
<span style="position: absolute; background: orange; width: 100px; height: 100px"></span>
</span>
</span>
</span>
</div>
<script>
// Test pass if it does not crash.
test(() => {});
</script>