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-012.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>test(()=>{})</script>
<style>
  #container {
    width: 600px;
    position: relative;
  }
  #target {
    position: absolute;
    left: 0px;
    right: 33554000px;
    width: 10px;
    margin-left: 33554432px;
    margin-right: 33554432px;
    height: 20px;
  }
</style>
<body>
  <div id="container">
    <div id="target"></div>
  </div>
</body>