Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / canvas / test / test_2d.strokeRect.negative.html
blobfd8f353010af3f28ca193b03f88b12f64739f955
1 <!DOCTYPE HTML>
2 <title>Canvas test: 2d.strokeRect.negative</title>
3 <script src="/MochiKit/MochiKit.js"></script>
4 <script src="/tests/SimpleTest/SimpleTest.js"></script>
5 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
6 <body>
7 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
8 <script>
9 function isPixel(ctx, x,y, r,g,b,a, pos, colour, d) {
10 var pixel = ctx.getImageData(x, y, 1, 1);
11 var pr = pixel.data[0],
12 pg = pixel.data[1],
13 pb = pixel.data[2],
14 pa = pixel.data[3];
15 ok(r-d <= pr && pr <= r+d &&
16 g-d <= pg && pg <= g+d &&
17 b-d <= pb && pb <= b+d &&
18 a-d <= pa && pa <= a+d,
19 "pixel "+pos+" is "+pr+","+pg+","+pb+","+pa+"; expected "+colour+" +/- "+d);
22 SimpleTest.waitForExplicitFinish();
23 MochiKit.DOM.addLoadEvent(function () {
25 var canvas = document.getElementById('c');
26 var ctx = canvas.getContext('2d');
28 ctx.fillStyle = '#f00';
29 ctx.fillRect(0, 0, 100, 50);
30 ctx.strokeStyle = '#0f0';
31 ctx.lineWidth = 25;
32 ctx.strokeRect(12, 12, 26, 1);
33 ctx.strokeRect(88, 12, -26, 1);
34 ctx.strokeRect(12, 38, 26, -1);
35 ctx.strokeRect(88, 38, -26, -1);
36 isPixel(ctx, 25,12, 0,255,0,255, "25,12", "0,255,0,255", 0);
37 isPixel(ctx, 75,12, 0,255,0,255, "75,12", "0,255,0,255", 0);
38 isPixel(ctx, 25,37, 0,255,0,255, "25,37", "0,255,0,255", 0);
39 isPixel(ctx, 75,37, 0,255,0,255, "75,37", "0,255,0,255", 0);
41 SimpleTest.finish();
43 });
44 </script>