Index: third_party/WebKit/LayoutTests/webaudio/constructor/convolver.html |
diff --git a/third_party/WebKit/LayoutTests/webaudio/constructor/convolver.html b/third_party/WebKit/LayoutTests/webaudio/constructor/convolver.html |
index f48c95a4fd5b7e45502a48fd84044f2a3da7eb20..410869d2afc9569ed51e4e105050407e46288c87 100644 |
--- a/third_party/WebKit/LayoutTests/webaudio/constructor/convolver.html |
+++ b/third_party/WebKit/LayoutTests/webaudio/constructor/convolver.html |
@@ -62,7 +62,7 @@ |
success = Should("node0.channelInterpretation", node.channelInterpretation) |
.beEqualTo("speakers") && success; |
- success = Should("new AnalyserNode(context)", success) |
+ success = Should("new ConvolverNode(context)", success) |
.summarize( |
"constructed node with correct attributes", |
"did not construct correct node correctly") |
@@ -71,7 +71,18 @@ |
}); |
audit.defineTask("test AudioNodeOptions", function (taskDone) { |
- testAudioNodeOptions(context, "ConvolverNode"); |
+ testAudioNodeOptions(context, "ConvolverNode", { |
+ expectedChannelCount: { |
+ value: 2, |
+ isFixed: true, |
+ errorType: "NotSupportedError" |
+ }, |
+ expectedChannelCountMode: { |
+ value: "clamped-max", |
+ isFixed: true, |
+ errorType: "NotSupportedError" |
+ }, |
+ }); |
taskDone(); |
}); |