summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-absolute-crash-chrome-001.html
blob: 592e5d22e70f1b0c5e3e4b9222cbd1ccef99bdef (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
26
27
28
<!doctype html>
<html>
<head>
  <title>Chrome crash with inline </title>
  <link rel="help" href="https://www.w3.org/TR/css-position-3/#def-cb">
  <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=928224">
  <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>