18 lines
617 B
HTML
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>
|