Index: LayoutTests/webaudio/dom-exceptions.html |
diff --git a/LayoutTests/webaudio/dom-exceptions.html b/LayoutTests/webaudio/dom-exceptions.html |
index 6cff51a3d687e00a5fa0db2839c418fbab8d4793..18691d25c0269c2cfd0d69cbb1fa6321812c9c1a 100644 |
--- a/LayoutTests/webaudio/dom-exceptions.html |
+++ b/LayoutTests/webaudio/dom-exceptions.html |
@@ -50,6 +50,8 @@ |
shouldThrow("context.createBuffer(1, 0, context.sampleRate)"); |
// 2-arg createBuffer not allowed. |
shouldThrow("context.createBuffer(new ArrayBuffer(100), true)"); |
+ // Invalid ArrayBuffer (unspecified error) |
+ shouldThrow("context.decodeAudioData(null, function() {}, function () {})"); |
// Invalid sources (unspecified error) |
shouldThrow("context.createMediaElementSource(null)"); |
shouldThrow("context.createMediaStreamSource(null)"); |