tor-browser

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

container-list-items-crash.html (403B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="http://crbug.com/374683348">
      3 <style>
      4  #container {
      5    container-type: inline-size;
      6    width: 500px;
      7    position: absolute;
      8  }
      9 </style>
     10 <ol>
     11  <div id="container">
     12    <li id="item"></li>
     13  </div>
     14  <li></li>
     15 </ol>
     16 <script>
     17  container.offsetTop;
     18  item.style = "counter-reset: list-item 1";
     19  container.style.width = "300px";
     20  container.offsetTop;
     21 </script>