tor-browser

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

slot-content-visibility-16-crash.html (408B)


      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=1251931">
      4 
      5 <div>
      6  <template shadowrootmode=open></template>
      7  <span id="outside"></span>
      8 </div>
      9 <div style="content-visibility:hidden"></div>
     10 <script>
     11  getComputedStyle(outside).color;
     12  outside.style.color = "green";
     13  getComputedStyle(outside).color;
     14 </script>