| 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(
|
|
|