Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Basic test for OfflineAudioContext.suspend() and OfflineAudioContext.resume(). | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". | |
| 4 | |
| 5 | |
| 6 PASS context.suspend() rejected correctly (with TypeError: Failed to execute 'su spend' on 'OfflineAudioContext': 1 argument required, but only 0 present.). | |
| 7 PASS Calling multiple suspends at the same rendering quantum rejected correctly (with InvalidStateError: cannot schedule a suspend at the duplicate time). | |
|
Raymond Toy
2015/06/12 21:11:36
Can you add the actual time here in the error mess
hongchan
2015/06/15 18:40:45
Done.
| |
| 8 PASS Resuming before suspend rejected correctly (with InvalidStateError: cannot resume the context that has not started). | |
| 9 PASS Calling resume on non-suspended context rejected correctly (with InvalidSta teError: cannot resume the context that has not started). | |
| 10 PASS successfullyParsed is true | |
| 11 | |
| 12 TEST COMPLETE | |
| 13 | |
| OLD | NEW |