bug 816059 - properly reset blocklist in browser-chrome tests r=jaws
[gecko.git] / content / canvas / test / test_2d.composite.uncovered.pattern.source-in.html
blobfde4ef299a910cc3c48d91bce57546f8d9385cfd
1 <!DOCTYPE HTML>
2 <title>Canvas test: 2d.composite.uncovered.pattern.source-in</title>
3 <!-- Testing: Pattern fill() draws pixels not covered by the source object as (0,0,0,0), and does not leave the pixels unchanged. -->
4 <script src="/MochiKit/MochiKit.js"></script>
5 <script src="/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
7 <body>
8 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
9 <script>
10 function isPixel(ctx, x,y, r,g,b,a, pos, colour, d) {
11 var pixel = ctx.getImageData(x, y, 1, 1);
12 var pr = pixel.data[0],
13 pg = pixel.data[1],
14 pb = pixel.data[2],
15 pa = pixel.data[3];
16 ok(r-d <= pr && pr <= r+d &&
17 g-d <= pg && pg <= g+d &&
18 b-d <= pb && pb <= b+d &&
19 a-d <= pa && pa <= a+d,
20 "pixel "+pos+" is "+pr+","+pg+","+pb+","+pa+"; expected "+colour+" +/- "+d);
22 function todo_isPixel(ctx, x,y, r,g,b,a, pos, colour, d) {
23 var pixel = ctx.getImageData(x, y, 1, 1);
24 var pr = pixel.data[0],
25 pg = pixel.data[1],
26 pb = pixel.data[2],
27 pa = pixel.data[3];
28 todo(r-d <= pr && pr <= r+d &&
29 g-d <= pg && pg <= g+d &&
30 b-d <= pb && pb <= b+d &&
31 a-d <= pa && pa <= a+d,
32 "pixel "+pos+" is "+pr+","+pg+","+pb+","+pa+"; expected "+colour+" +/- "+d);
35 SimpleTest.waitForExplicitFinish();
36 addLoadEvent(function () {
38 var canvas = document.getElementById('c');
39 var ctx = canvas.getContext('2d');
42 ctx.fillStyle = 'rgba(0, 255, 255, 0.5)';
43 ctx.fillRect(0, 0, 100, 50);
44 ctx.globalCompositeOperation = 'source-in';
45 ctx.fillStyle = ctx.createPattern(document.getElementById('yellow.png'), 'no-repeat');
46 ctx.fillRect(0, 50, 100, 50);
47 isPixel(ctx, 50,25, 0,0,0,0, "50,25", "0,0,0,0", 5);
49 SimpleTest.finish();
51 });
52 </script>
53 <img src="image_yellow.png" id="yellow.png" class="resource">