tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

position-absolute-crash-chrome-001.html (629B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>Chrome crash with inline </title>
      5  <link rel="help" href="https://www.w3.org/TR/css-position-3/#def-cb">
      6  <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=928224">
      7  <script src="/resources/testharness.js"></script>
      8  <script src="/resources/testharnessreport.js"></script>
      9  <script>test(()=>{})</script>
     10 <style>
     11  a {
     12    position: relative;
     13  }
     14  a:before {
     15    content: "foo";
     16    position: absolute;
     17    background: green;
     18  }
     19 </style>
     20 </head>
     21 <body>
     22  <div>
     23    <li>
     24      <a href="dummy">success if does not crash</a>
     25    </li>
     26  </div>
     27 </body>
     28 </html>