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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-0-output-channels-expected.txt

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 3 years, 12 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 unified diff | Download patch
OLDNEW
1 Test Connecting 0-output channel ScriptProcessor to Another Node 1 Test Connecting 0-output channel ScriptProcessor to Another Node
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS context = new OfflineAudioContext(1, 1024, 44100) did not throw an exceptio n. 6 PASS context = new OfflineAudioContext(1, 1024, 44100) did not throw an exceptio n.
7 PASS analyzer = context.createAnalyser() did not throw an exception. 7 PASS analyzer = context.createAnalyser() did not throw an exception.
8 PASS scriptNode1 = context.createScriptProcessor(1024, 11, 0) did not throw an e xception. 8 PASS scriptNode1 = context.createScriptProcessor(1024, 11, 0) did not throw an e xception.
9 PASS scriptNode2 = context.createScriptProcessor(1024, 1, 1) did not throw an ex ception. 9 PASS scriptNode2 = context.createScriptProcessor(1024, 1, 1) did not throw an ex ception.
10 PASS scriptNode1.connect(analyzer) threw InvalidAccessError: Failed to execute ' connect' on 'AudioNode': cannot connect a ScriptProcessorNode with 0 output chan nels to any destination node.. 10 PASS scriptNode1.connect(analyzer) threw InvalidAccessError: Failed to execute ' connect' on 'AudioNode': cannot connect a ScriptProcessorNode with 0 output chan nels to any destination node..
11 PASS scriptNode2.connect(analyzer) did not throw an exception. 11 PASS scriptNode2.connect(analyzer) did not throw an exception.
12 PASS successfullyParsed is true 12 PASS successfullyParsed is true
13 13
14 TEST COMPLETE 14 TEST COMPLETE
15 15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698