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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html

Issue 2393783003: Mark required dictionary members as required (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html b/third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html
index a675e705d569fc0058587648fc13957c51799d24..1b8a035f53dd3c9b1882d2d1e282d344a60cdaaa 100644
--- a/third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html
+++ b/third_party/WebKit/LayoutTests/webaudio/constructor/iirfilter.html
@@ -64,7 +64,7 @@
success = Should("node = new IIRFilterNode(, " + JSON.stringify(options) + ")",
function () {
node = new IIRFilterNode(context, options);
- }).throw("NotFoundError") && success;
+ }).throw("TypeError") && success;
options = {
feedforward: [1, 0.5]
@@ -72,7 +72,7 @@
success = Should("node = new IIRFilterNode(c, " + JSON.stringify(options) + ")",
function () {
node = new IIRFilterNode(context, options);
- }).throw("NotFoundError") && success;
+ }).throw("TypeError") && success;
Should("new AnalyserNode() with options", success)
.summarize(
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698