Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Unified Diff: LayoutTests/webaudio/audiocontext-suspend-resume-expected.txt

Issue 1140723003: Implement suspend() and resume() for OfflineAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initial review + layout tests Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 4796efb8af90a64e8ea3bc311476d6366809e6f0..1365bcb07c0e99b44a70872b43ebb6054a3100cc 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 [object Promise] is an instance of function Promise() { [native code] }
-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 [object Promise] is an instance of function Promise() { [native code] }
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 is already running or 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, beyond the total render duration or at the duplicate position.
Raymond Toy 2015/05/28 16:37:34 It would be nice if three different messages were
hongchan 2015/06/09 20:49:58 Good idea. I will try to be more specific on these
+PASS offlineContext.resume() on a closed context rejected: InvalidStateError: cannot resume the context is already running or has not started
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698