Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / canvas-stroke-empty-fill.js
blob1ef09c22561bd87f743ebff2b3a9a5f8976b8317
1 description("Series of tests to ensure correct behaviour for stroke() on an empty fillStyle() (alpha=0)");
2 var ctx = document.createElement('canvas').getContext('2d');
4 ctx.fillStyle = 'rgba(0,0,0,0)';
5 ctx.strokeStyle = 'green';
6 ctx.lineWidth = 200;
7 ctx.moveTo(0,100);
8 ctx.lineTo(200,100);
9 ctx.stroke();
10 var imageData = ctx.getImageData(0, 0, 100, 100);
11 var imgdata = imageData.data;
12 shouldBe("imgdata[4]", "0");
13 shouldBe("imgdata[5]", "128");
14 shouldBe("imgdata[6]", "0");