tor-browser

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

slot-content-visibility-11-crash.html (528B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1221036">
      4 
      5 >
      6 <div>
      7  <template shadowrootmode=open>
      8    <slot style="content-visibility: hidden; display: block"></slot>
      9  </template>
     10  <div style="content-visibility: hidden">a</div>
     11 <script type="text/javascript">
     12  const range = new Range();
     13  range.setStartBefore(document.body.firstChild);
     14  range.setEndAfter(document.body.lastChild);
     15  range.getBoundingClientRect();
     16 </script>