| Index: LayoutTests/webaudio/dom-exceptions.html
|
| diff --git a/LayoutTests/webaudio/dom-exceptions.html b/LayoutTests/webaudio/dom-exceptions.html
|
| index 7f1b983cae28a35e1e864b58b9d62dfe1cfbbe69..18691d25c0269c2cfd0d69cbb1fa6321812c9c1a 100644
|
| --- a/LayoutTests/webaudio/dom-exceptions.html
|
| +++ b/LayoutTests/webaudio/dom-exceptions.html
|
| @@ -260,7 +260,9 @@ function runTest() {
|
| shouldNotThrow("oc = new OfflineAudioContext(1, 44100, 44100)");
|
| shouldNotThrow("conv = oc.createConvolver()");
|
| shouldThrow("conv.buffer = oc.createBuffer(1, 100, 22050)");
|
| -
|
| + // conv.buffer should be unchanged (null) because the above failed.
|
| + shouldBeNull("conv.buffer");
|
| +
|
| // PannerNode channel count and mode
|
| panner = context.createPanner();
|
| // Channel count can only be set to 1 or 2.
|
|
|