Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: LayoutTests/fast/canvas/script-tests/canvas-overloads-setStrokeColor.js

Issue 24203002: Improve generated "Not enough arguments." TypeError exceptions. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaseline Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
index cd1bc14fd6117941d445a17d26190125b79c0a05..399d2ba283012a7441d012a07b2a5502a4351e05 100644
--- a/LayoutTests/fast/canvas/script-tests/canvas-overloads-setStrokeColor.js
+++ b/LayoutTests/fast/canvas/script-tests/canvas-overloads-setStrokeColor.js
@@ -2,10 +2,13 @@ description("Test the behavior of CanvasRenderingContext2D.setStrokeColor() when
var ctx = document.createElement('canvas').getContext('2d');
+function ExpectedNotEnoughArgumentsMessage(num) {
+ return "\"TypeError: Failed to execute 'setStrokeColor' on 'CanvasRenderingContext2D': 1 argument required, but only " + num + " present.\"";
+}
+
var TypeError = "TypeError: Type error";
-var TypeErrorNotEnoughArguments = "TypeError: Not enough arguments";
-shouldThrow("ctx.setStrokeColor()", "TypeErrorNotEnoughArguments");
+shouldThrow("ctx.setStrokeColor()", ExpectedNotEnoughArgumentsMessage(0));
shouldBe("ctx.setStrokeColor('red')", "undefined");
shouldBe("ctx.setStrokeColor(0)", "undefined");
shouldBe("ctx.setStrokeColor(0, 0)", "undefined");

Powered by Google App Engine
This is Rietveld 408576698