tor-browser

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

slot-content-visibility-7-crash.html (424B)


      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=1221508">
      4 
      5 <script>
      6 function showmodal() {
      7 dialog.showModal();
      8 }
      9 </script>
     10 
     11 <body onload=showmodal()>
     12  <div>
     13    <template shadowrootmode=open>
     14      <slot style="content-visibility: hidden; display:block"></slot>
     15    </template>
     16    <dialog id=dialog></dialog>
     17  </div>
     18 </body>