| Index: LayoutTests/webaudio/dom-exceptions.html
|
| diff --git a/LayoutTests/webaudio/dom-exceptions.html b/LayoutTests/webaudio/dom-exceptions.html
|
| index 820064378744765d2539a01fb7b822906f75ee35..4087bc4e5d58db5a864cd06e5e70fcc461c0d68d 100644
|
| --- a/LayoutTests/webaudio/dom-exceptions.html
|
| +++ b/LayoutTests/webaudio/dom-exceptions.html
|
| @@ -40,7 +40,7 @@ function runTest() {
|
| shouldNotThrow("context.createBuffer(1, 1, 192000)");
|
| // Invalid number of frames: NotSupportedError
|
| shouldThrow("context.createBuffer(1, 0, context.sampleRate)");
|
| - // Invalid ArrayBuffer (unspecified error)
|
| + // 2-arg createBuffer not allowed.
|
| shouldThrow("context.createBuffer(new ArrayBuffer(100), true)");
|
| // Invalid ArrayBuffer (unspecified error)
|
| shouldThrow("context.decodeAudioData(null, function() {}, function () {})");
|
|
|