Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / script-tests / canvas-strokeText-strokes-shadow.js
blobec0887e54c6e8868f077a3a9cf84710266c9bb89
1 description("Test that strokeText() doesn't produce a filled shadow.");
2 var ctx = document.createElement('canvas').getContext('2d');
4 ctx.fillStyle = 'green';
5 ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
7 // Stroke an 'I' with its shadow in the upper left corner.
8 ctx.strokeStyle = 'white';
9 ctx.lineWidth = 2;
10 ctx.shadowColor = 'red';
11 ctx.shadowOffsetX = -15;
12 ctx.shadowOffsetY = 0;
13 ctx.font = '128px sans-serif';
14 ctx.strokeText("I", 0, 50);
16 imageData = ctx.getImageData(0, 0, 1, 1);
17 imgdata = imageData.data;
18 shouldBe("imgdata[0]", "0");
19 shouldBe("imgdata[1]", "128");
20 shouldBe("imgdata[2]", "0");
21 shouldBe("imgdata[3]", "255");