tor-browser

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

document-canvas-remove-body.html (441B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <script src="/common/reftest-wait.js"></script>
      4 <script src="/common/rendering-utils.js"></script>
      5 <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#body-background">
      6 <link rel="match" href="document-canvas-remove-body-ref.html">
      7 <body style="background: red"></body>
      8 <script>
      9 waitForAtLeastOneFrame().then(() => {
     10  document.body.remove();
     11  takeScreenshot();
     12 });
     13 </script>
     14 </html>