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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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: third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt
diff --git a/third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt b/third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt
index d631ca81df9b50329d95c121e29e61f492bb96e4..ff9689a39d39dfb0366b1b785428fb45dc008380 100644
--- a/third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt
+++ b/third_party/WebKit/LayoutTests/webaudio/audiocontext-close-expected.txt
@@ -10,22 +10,22 @@ PASS gain = context.createGain() did not throw exception.
PASS gain.connect(context.destination) did not throw exception.
PASS context.close() was correctly resolved
PASS gain.disconnect(destination) did not throw exception.
-PASS context.createAnalyser() threw exception InvalidStateError: Failed to execute 'createAnalyser' on 'AudioContext': AudioContext has been closed..
-PASS context.createBiquadFilter() threw exception InvalidStateError: Failed to execute 'createBiquadFilter' on 'AudioContext': AudioContext has been closed..
+PASS context.createAnalyser() threw exception InvalidStateError: Failed to execute 'createAnalyser' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createBiquadFilter() threw exception InvalidStateError: Failed to execute 'createBiquadFilter' on 'BaseAudioContext': AudioContext has been closed..
PASS context.createBuffer(1, 1, 48000) did not throw exception.
-PASS context.createBufferSource() threw exception InvalidStateError: Failed to execute 'createBufferSource' on 'AudioContext': AudioContext has been closed..
-PASS context.createChannelMerger() threw exception InvalidStateError: Failed to execute 'createChannelMerger' on 'AudioContext': AudioContext has been closed..
-PASS context.createChannelSplitter() threw exception InvalidStateError: Failed to execute 'createChannelSplitter' on 'AudioContext': AudioContext has been closed..
-PASS context.createConvolver() threw exception InvalidStateError: Failed to execute 'createConvolver' on 'AudioContext': AudioContext has been closed..
-PASS context.createDelay() threw exception InvalidStateError: Failed to execute 'createDelay' on 'AudioContext': AudioContext has been closed..
-PASS context.createDynamicsCompressor() threw exception InvalidStateError: Failed to execute 'createDynamicsCompressor' on 'AudioContext': AudioContext has been closed..
-PASS context.createGain() threw exception InvalidStateError: Failed to execute 'createGain' on 'AudioContext': AudioContext has been closed..
-PASS context.createOscillator() threw exception InvalidStateError: Failed to execute 'createOscillator' on 'AudioContext': AudioContext has been closed..
-PASS context.createPanner() threw exception InvalidStateError: Failed to execute 'createPanner' on 'AudioContext': AudioContext has been closed..
-PASS context.createPeriodicWave(wave, wave) threw exception InvalidStateError: Failed to execute 'createPeriodicWave' on 'AudioContext': AudioContext has been closed..
-PASS context.createScriptProcessor() threw exception InvalidStateError: Failed to execute 'createScriptProcessor' on 'AudioContext': AudioContext has been closed..
-PASS context.createStereoPanner() threw exception InvalidStateError: Failed to execute 'createStereoPanner' on 'AudioContext': AudioContext has been closed..
-PASS context.createWaveShaper() threw exception InvalidStateError: Failed to execute 'createWaveShaper' on 'AudioContext': AudioContext has been closed..
+PASS context.createBufferSource() threw exception InvalidStateError: Failed to execute 'createBufferSource' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createChannelMerger() threw exception InvalidStateError: Failed to execute 'createChannelMerger' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createChannelSplitter() threw exception InvalidStateError: Failed to execute 'createChannelSplitter' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createConvolver() threw exception InvalidStateError: Failed to execute 'createConvolver' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createDelay() threw exception InvalidStateError: Failed to execute 'createDelay' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createDynamicsCompressor() threw exception InvalidStateError: Failed to execute 'createDynamicsCompressor' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createGain() threw exception InvalidStateError: Failed to execute 'createGain' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createOscillator() threw exception InvalidStateError: Failed to execute 'createOscillator' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createPanner() threw exception InvalidStateError: Failed to execute 'createPanner' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createPeriodicWave(wave, wave) threw exception InvalidStateError: Failed to execute 'createPeriodicWave' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createScriptProcessor() threw exception InvalidStateError: Failed to execute 'createScriptProcessor' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createStereoPanner() threw exception InvalidStateError: Failed to execute 'createStereoPanner' on 'BaseAudioContext': AudioContext has been closed..
+PASS context.createWaveShaper() threw exception InvalidStateError: Failed to execute 'createWaveShaper' on 'BaseAudioContext': AudioContext has been closed..
PASS osc.connect(gain) threw exception InvalidStateError: Failed to execute 'connect' on 'AudioNode': Cannot connect after the context has been closed..
PASS gain.disconnect() did not throw exception.
PASS Attempt to resume a closed context was correctly rejected

Powered by Google App Engine
This is Rietveld 408576698