tor-browser

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

media-print-change-print.html (247B)


      1 <!doctype html>
      2 <link rel=match href="media-print-change-print-ref.html">
      3 <div id="target">FAIL</div>
      4 <script>
      5  matchMedia("print").addEventListener("change", function() {
      6    document.getElementById("target").innerHTML = "PASS";
      7  });
      8 </script>