blob: 9483299ee1b0bbc6345aa1893141e15a8614ff52 [file] [log] [blame]
description("Test the behavior of CanvasRenderingContext2D.setShadow() when called with different numbers of arguments.");
var ctx = document.createElement('canvas').getContext('2d');
var TypeError = "TypeError: Type error";
shouldThrow("ctx.setShadow()", "TypeError");
shouldThrow("ctx.setShadow(0)", "TypeError");
shouldThrow("ctx.setShadow(0, 0)", "TypeError");
shouldBe("ctx.setShadow(0, 0, 0)", "undefined");
shouldBe("ctx.setShadow(0, 0, 0, 0)", "undefined");
shouldBe("ctx.setShadow(0, 0, 0, 0, 0)", "undefined");
shouldThrow("ctx.setShadow(0, 0, 0, 0, 0, 0)", "TypeError");
shouldBe("ctx.setShadow(0, 0, 0, 0, 'red')", "undefined");
shouldThrow("ctx.setShadow(0, 0, 0, 0, 'red', 0)", "TypeError");
shouldBe("ctx.setShadow(0, 0, 0, 0, 'red', 0, 0)", "undefined");
shouldThrow("ctx.setShadow(0, 0, 0, 0, 0, 0)", "TypeError");
shouldBe("ctx.setShadow(0, 0, 0, 0, 0, 0, 0)", "undefined");
shouldBe("ctx.setShadow(0, 0, 0, 0, 0, 0, 0, 0)", "undefined");
shouldThrow("ctx.setShadow(0, 0, 0, 0, 0, 0, 0, 0, 0)", "TypeError");