summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-absolute-crash-chrome-012.html
blob: f012ff572691d9c42fb8f642a2fa47e524a4cacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<link rel="help" href="https://crbug.com/996085">
<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>