tor-browser

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

canvas-with-padding.html (423B)


      1 <script src="/resources/testharness.js"></script>
      2 <script src="/resources/testharnessreport.js"></script>
      3 <canvas id='c' style="padding-right: 4294967292; border-right: 124px solid black;"></canvas>
      4 <script>
      5    test(function(t) {
      6        var canvas = document.getElementById('c');
      7        var ctx = canvas.getContext('2d');
      8        ctx.getImageData(0, 0, 1, 1);
      9    }, '// The test case passes by not crashing.')
     10 </script>