1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
description("Test different constructors of Path.");
var ctx = document.createElement('canvas').getContext('2d');
debug("Test constructor Path().")
ctx.beginPath();
var p1 = new Path2D();
p1.rect(0,0,100,100);
ctx.fillStyle = 'yellow';
ctx.fill(p1);
var imageData = ctx.getImageData(0, 0, 100, 100);
var imgdata = imageData.data;
shouldBe("imgdata[4]", "255");
shouldBe("imgdata[5]", "255");
shouldBe("imgdata[6]", "0");
shouldBe("imgdata[7]", "255");
debug("");
debug("Test constructor Path(DOMString) which takes a SVG data string.")
ctx.beginPath();
var p2 = new Path2D("M100,0L200,0L200,100L100,100z");
ctx.fillStyle = 'blue';
ctx.fill(p2);
imageData = ctx.getImageData(100, 0, 100, 100);
imgdata = imageData.data;
shouldBe("imgdata[4]", "0");
shouldBe("imgdata[5]", "0");
shouldBe("imgdata[6]", "255");
shouldBe("imgdata[7]", "255");
debug("");
debug("Test constructor Path(Path) which takes another Path object.")
ctx.beginPath();
var p3 = new Path2D(p1);
ctx.translate(200,0);
ctx.fillStyle = 'green';
ctx.fill(p3);
ctx.translate(-200,0);
imageData = ctx.getImageData(200, 0, 100, 100);
imgdata = imageData.data;
shouldBe("imgdata[4]", "0");
shouldBe("imgdata[5]", "128");
shouldBe("imgdata[6]", "0");
shouldBe("imgdata[7]", "255");
debug("");
|