tor-browser

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

test_2d.clip.winding.html (1456B)


      1 <!DOCTYPE HTML>
      2 <title>Canvas test: 2d.clip.winding</title>
      3 <script src="/tests/SimpleTest/SimpleTest.js"></script>
      4 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
      5 <body>
      6 <canvas id="c" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas>
      7 <script>
      8 function isPixel(ctx, x,y, r,g,b,a, pos, colour, d) {
      9    var pixel = ctx.getImageData(x, y, 1, 1);
     10    var pr = pixel.data[0],
     11        pg = pixel.data[1],
     12        pb = pixel.data[2],
     13        pa = pixel.data[3];
     14    ok(r-d <= pr && pr <= r+d &&
     15       g-d <= pg && pg <= g+d &&
     16       b-d <= pb && pb <= b+d &&
     17       a-d <= pa && pa <= a+d,
     18       "pixel "+pos+" is "+pr+","+pg+","+pb+","+pa+"; expected "+colour+" +/- "+d);
     19 }
     20 
     21 SimpleTest.waitForExplicitFinish();
     22 addLoadEvent(function () {
     23 
     24 var canvas = document.getElementById('c');
     25 var ctx = canvas.getContext('2d');
     26 
     27 ctx.fillStyle = 'rgb(255,0,0)';
     28 ctx.fillRect(0, 0, 100, 100);
     29 ctx.fillStyle = 'rgb(0,255,0)';
     30 ctx.beginPath();
     31 ctx.rect(0, 0, 100, 100);
     32 ctx.rect(25, 25, 50, 50);
     33 ctx.clip();
     34 ctx.beginPath();
     35 ctx.fillRect(0, 0, 100, 100);
     36 isPixel(ctx, 50,50, 0,255,0,255, "50,50", "0,255,0,255", 5);
     37 
     38 ctx.fillStyle = 'rgb(255,0,0)';
     39 ctx.fillRect(0, 0, 100, 100);
     40 ctx.fillStyle = 'rgb(0,255,0)';
     41 ctx.beginPath();
     42 ctx.rect(0, 0, 100, 100);
     43 ctx.rect(25, 25, 50, 50);
     44 ctx.clip('evenodd');
     45 ctx.fillRect(0, 0, 100, 100);
     46 isPixel(ctx, 50,50, 255,0,0,255, "50,50", "255,0,0,255", 5);
     47 
     48 SimpleTest.finish();
     49 
     50 });
     51 </script>