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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-overloads-fillText.js

Issue 2694703004: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 description("Test the behavior of CanvasRenderingContext2D.fillText() when calle d with different numbers of arguments.");
2
3 var ctx = document.createElement('canvas').getContext('2d');
4
5 function ExpectedNotEnoughArgumentsMessage(num) {
6 return "\"TypeError: Failed to execute 'fillText' on 'CanvasRenderingContext 2D': 3 arguments required, but only " + num + " present.\"";
7 }
8
9 shouldThrow("ctx.fillText()", ExpectedNotEnoughArgumentsMessage(0));
10 shouldThrow("ctx.fillText('moo')", ExpectedNotEnoughArgumentsMessage(1));
11 shouldThrow("ctx.fillText('moo',0)", ExpectedNotEnoughArgumentsMessage(2));
12 shouldBe("ctx.fillText('moo',0,0)", "undefined");
13 shouldBe("ctx.fillText('moo',0,0,0)", "undefined");
14 shouldBe("ctx.fillText('moo',0,0,0,0)", "undefined");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698