tor-browser

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

canvas-sibling-index-crash.html (309B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="http://crbug.com/416454066">
      3 <canvas id="canvas"></canvas>
      4 <script>
      5  const canvas = document.getElementById("canvas");
      6  const ctx = canvas.getContext("2d");
      7 
      8  ctx.fillStyle = "lch(from blue calc(l + sibling-index()) c h)";
      9  ctx.fillRect(10, 10, 100, 100);
     10 </script>