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-001.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<html>
<head>
  <title>Chrome crash with inline </title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>test(()=>{})</script>
<style>
  a {
    position: relative;
  }
  a:before {
    content: "foo";
    position: absolute;
    background: green;
  }
</style>
</head>
<body>
  <div>
    <li>
      <a href="dummy">success if does not crash</a>
    </li>
  </div>
</body>
</html>