1 description("Ensure correct behavior of canvas with path stroke using a strokeStyle color with alpha and a shadow");
3 function print(message, color)
5 var paragraph = document.createElement("div");
6 paragraph.appendChild(document.createTextNode(message));
7 paragraph.style.fontFamily = "monospace";
9 paragraph.style.color = color;
10 document.getElementById("console").appendChild(paragraph);
13 function shouldBeAround(a, b)
22 if (Math.abs(evalA - b) < 15)
23 print("PASS " + a + " is around " + b , "green")
25 print("FAIL " + a + " is not around " + b + " (actual: " + evalA + ")", "red");
28 var canvas = document.createElement('canvas');
29 document.body.appendChild(canvas);
30 canvas.setAttribute('width', '600');
31 canvas.setAttribute('height', '1100');
32 var ctx = canvas.getContext('2d');
35 ctx.strokeStyle = 'rgba(0, 0, 255, 0.5)';
36 ctx.shadowColor = 'rgba(255, 0, 0, 0.5)';
37 ctx.shadowOffsetX = 250;
40 function strokePath(x, y) {
42 ctx.arc(x, y, 75, 0, Math.PI*2, true);
54 ctx.rotate(Math.PI/2);
56 // Rotated alpha shadow.
58 strokePath(650, -150);
60 // Rotated blurry shadow.
62 strokePath(900, -150);
67 ctx.fillStyle = 'black';
69 function test(alphaTestFunction, x, y, r, g, b, a) {
71 imageData = ctx.getImageData(x, y, 1, 1);
72 data = imageData.data;
73 // Test pixel color components.
74 shouldBe('data[0]', r+'');
75 shouldBe('data[1]', g+'');
76 shouldBe('data[2]', b+'');
77 alphaTestFunction('data[3]', a+'');
79 ctx.fillRect(x, y, 3, 3);
82 print('Verifying alpha shadow...');
83 test(shouldBe, 400, 150, 0, 0, 0, 0);
84 test(shouldBeAround, 400, 75, 255, 0, 0, 64);
85 test(shouldBeAround, 400, 225, 255, 0, 0, 64);
86 test(shouldBeAround, 325, 150, 255, 0, 0, 64);
87 test(shouldBeAround, 475, 150, 255, 0, 0, 64);
90 print('Verifying blurry shadow...');
91 test(shouldBe, 400, 400, 0, 0, 0, 0);
92 test(shouldBeAround, 400, 300, 255, 0, 0, 31);
93 test(shouldBeAround, 400, 500, 255, 0, 0, 31);
94 test(shouldBeAround, 300, 400, 255, 0, 0, 31);
95 test(shouldBeAround, 500, 400, 255, 0, 0, 31);
98 print('Verifying rotated alpha shadow...');
99 test(shouldBe, 400, 650, 0, 0, 0, 0);
100 test(shouldBeAround, 400, 575, 255, 0, 0, 64);
101 test(shouldBeAround, 400, 725, 255, 0, 0, 64);
102 test(shouldBeAround, 325, 650, 255, 0, 0, 64);
103 test(shouldBeAround, 475, 650, 255, 0, 0, 64);
106 print('Verifying rotated blurry shadow...');
107 test(shouldBe, 400, 900, 0, 0, 0, 0);
108 test(shouldBeAround, 400, 800, 255, 0, 0, 31);
109 test(shouldBeAround, 400, 1000, 255, 0, 0, 31);
110 test(shouldBeAround, 300, 900, 255, 0, 0, 31);
111 test(shouldBeAround, 500, 900, 255, 0, 0, 31);