blob: a1517effb2d563c6c188608f8986887ec4319e6b [file] [log] [blame]
description("Ensure that the constructor for Path object and dependent functions exist.");
shouldBe("typeof document.getElementById", '"function"');
var path = new Path();
shouldBeType("path", "Path");
shouldBe("typeof path.closePath", '"function"');
shouldBe("typeof path.moveTo", '"function"');
shouldBe("typeof path.lineTo", '"function"');
shouldBe("typeof path.quadraticCurveTo", '"function"');
shouldBe("typeof path.bezierCurveTo", '"function"');
shouldBe("typeof path.arcTo", '"function"');
shouldBe("typeof path.arc", '"function"');
shouldBe("typeof path.rect", '"function"');