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

Unified Diff: LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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-path-context-fill.js
diff --git a/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js b/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js
index 71b1f849e422c8f61835779a5010c58649c72d38..3bf0d09938e49f9014d6f3bed9fba10bd27f59e2 100644
--- a/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js
+++ b/LayoutTests/fast/canvas/script-tests/canvas-path-context-fill.js
@@ -73,10 +73,8 @@ function prepareTestScenario() {
shouldThrow("ctx.fill({}, 'evenodd')");
shouldThrow("ctx.fill('gazonk')");
shouldThrow("ctx.fill(path, 'gazonk')");
- shouldThrow("ctx.fill(undefined)");
shouldThrow("ctx.fill(undefined, undefined)");
shouldThrow("ctx.fill(undefined, path)");
- shouldThrow("ctx.fill(path, undefined)");
}
// Run test and allow variation of results.

Powered by Google App Engine
This is Rietveld 408576698