| Index: LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt
|
| diff --git a/LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt b/LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt
|
| index 0eede07edbcdc8494fc1d03d4d73991ba2e50d5b..2fd41cdf132e1fe33056324f203a9f4585048ace 100644
|
| --- a/LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt
|
| +++ b/LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt
|
| @@ -7,15 +7,15 @@ PASS offlineContext = new OfflineAudioContext(1, durationInSeconds * sampleRate,
|
| PASS offlineContext.state is "suspended"
|
| PASS p1 = offlineContext.suspend() did not throw exception.
|
| PASS p1 is an instance of Promise
|
| -PASS offlineContext.suspend() was correctly rejected: InvalidAccessError: cannot suspend an OfflineAudioContext
|
| +PASS offlineContext.suspend() was correctly rejected: TypeError: Failed to execute 'suspend' on 'OfflineAudioContext': 1 argument required, but only 0 present.
|
| PASS p2 = offlineContext.resume() did not throw exception.
|
| PASS p2 is an instance of Promise
|
| PASS offlineContext.state is "suspended"
|
| -PASS offlineContext.resume() was correctly rejected: InvalidAccessError: cannot resume an OfflineAudioContext
|
| +PASS offlineContext.resume() was correctly rejected: InvalidStateError: cannot resume the context that has not started
|
| PASS p3 = offlineContext.startRendering() did not throw exception.
|
| PASS offlineContext.state is "closed"
|
| -PASS offlineContext.suspend() on a closed context rejected: InvalidAccessError: cannot suspend an OfflineAudioContext
|
| -PASS offlineContext.resume() on a closed context rejected: InvalidAccessError: cannot resume an OfflineAudioContext
|
| +PASS offlineContext.suspend() on a closed context rejected: InvalidStateError: cannot schedule a suspend in the past
|
| +PASS offlineContext.resume() on a closed context rejected: InvalidStateError: cannot resume the context that is not suspended
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|