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