tor-browser

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

chrome-counter-in-multicol-details-crash.html (461B)


      1 <!doctype html>
      2 <title>Crash removing element before counter inside multicol details element</title>
      3 <link rel="help" href="https://crbug.com/1310295">
      4 <style>
      5  #counter { counter-reset:counter; }
      6  #counter::after { content: counter(foo); }
      7 </style>
      8 <details style="columns:2;" open>
      9  <span></span>
     10  <div id="removeme"></div>
     11  <span id="counter"></span>
     12 </details>
     13 <script>
     14  document.body.offsetTop;
     15  removeme.parentNode.removeChild(removeme);
     16 </script>