chromium/third_party/blink/web_tests/external/wpt/css/CSS2/positioning/abspos-inline-container-in-inline-block.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#propdef-position">
<link rel="author" title="Koji Ishii" href="mailto:[email protected]">
<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>