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