Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-position/position-absolute-crash-chrome-002.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Position Absolute: Chrome crash</title>
<link rel="author" href="mailto:atotic@google.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name="assert" content="absolute position in LI container does not crash">
<style>
  #container {
    position: absolute;
    top: 0px;
    left: 0px;
  }
  #abs {
    position: absolute;
    top: 0px;
    left: 0px;
  }
</style>
<li id="container">
  <ul>
    <li>
      <div id="abs">abs</div>
    </li>
  </ul>
</li>
<script>
test(() => {
}, 'test passes if it does not crash');
</script>