blob: 71df0ed6f3716c0e477ab81ee7a013d850dd97e1 [file] [log] [blame]
This tests that passing zero to the "numberOfFrames" parameter of the OfflineAudioContext constructor does not cause a crash.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS new webkitOfflineAudioContext(1, 0, 44100) threw exception Error: SyntaxError: DOM Exception 12.
PASS new webkitOfflineAudioContext(0, 1, 44100) threw exception Error: SyntaxError: DOM Exception 12.
PASS new webkitOfflineAudioContext(1, 1, 0) threw exception Error: SyntaxError: DOM Exception 12.
PASS new webkitOfflineAudioContext(1, 1, 44100) did not throw exception.
PASS did not crash