| Index: LayoutTests/fast/canvas/script-tests/canvas-overloads-setShadow.js
|
| diff --git a/LayoutTests/fast/canvas/script-tests/canvas-overloads-setShadow.js b/LayoutTests/fast/canvas/script-tests/canvas-overloads-setShadow.js
|
| deleted file mode 100644
|
| index 69c7a45c9aea7a8df97d8e5bfafb7535df35ef35..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/canvas/script-tests/canvas-overloads-setShadow.js
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -description("Test the behavior of CanvasRenderingContext2D.setShadow() when called with different numbers of arguments.");
|
| -
|
| -var ctx = document.createElement('canvas').getContext('2d');
|
| -
|
| -shouldThrow("ctx.setShadow()");
|
| -shouldThrow("ctx.setShadow(0)");
|
| -shouldThrow("ctx.setShadow(0, 0)");
|
| -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)");
|
| -shouldBe("ctx.setShadow(0, 0, 0, 0, 'red')", "undefined");
|
| -shouldThrow("ctx.setShadow(0, 0, 0, 0, 'red', 0)");
|
| -shouldBe("ctx.setShadow(0, 0, 0, 0, 'red', 0, 0)", "undefined");
|
| -shouldThrow("ctx.setShadow(0, 0, 0, 0, 0, 0)");
|
| -shouldBe("ctx.setShadow(0, 0, 0, 0, 0, 0, 0)", "undefined");
|
| -shouldBe("ctx.setShadow(0, 0, 0, 0, 0, 0, 0, 0)", "undefined");
|
| -shouldBe("ctx.setShadow(0, 0, 0, 0, 0, 0, 0, 0, 0)", "undefined");
|
|
|