tor-browser

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

unclosed-layers-expected.html (426B)


      1 <!DOCTYPE html>
      2 <title>Canvas test: unclosed-layers</title>
      3 <h1>unclosed-layers</h1>
      4 <p class="desc">Check that unclosed layers aren't rendered.</p>
      5 <canvas id="canvas" width="200" height="200">
      6  <p class="fallback">FAIL (fallback content)</p>
      7 </canvas>
      8 <script>
      9  const canvas = document.getElementById("canvas");
     10  const ctx = canvas.getContext('2d');
     11 
     12  ctx.fillStyle = 'purple';
     13  ctx.fillRect(60, 60, 75, 50);
     14 </script>