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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/audionode-expected.txt

Issue 2501863003: Support for AudioContextOptions latencyHint. (Closed)
Patch Set: Check all LatencyHints WebAudioDeviceImpl test. Created 4 years 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 Basic tests for AudioNode API. 1 Basic tests for AudioNode API.
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 PASS Source AudioNode has no inputs. 5 PASS Source AudioNode has no inputs.
6 PASS Source AudioNode has one output. 6 PASS Source AudioNode has one output.
7 PASS Destination AudioNode has one input. 7 PASS Destination AudioNode has one input.
8 PASS Destination AudioNode has no outputs. 8 PASS Destination AudioNode has no outputs.
9 PASS audioNode.connect(0, 0, 0) threw exception TypeError: Failed to execute 'co nnect' on 'AudioNode': parameter 1 is not of type 'AudioNode'.. 9 PASS audioNode.connect(0, 0, 0) threw exception TypeError: Failed to execute 'co nnect' on 'AudioNode': parameter 1 is not of type 'AudioNode'..
10 PASS audioNode.connect(null, 0, 0) threw exception TypeError: Failed to execute 'connect' on 'AudioNode': parameter 1 is not of type 'AudioNode'.. 10 PASS audioNode.connect(null, 0, 0) threw exception TypeError: Failed to execute 'connect' on 'AudioNode': parameter 1 is not of type 'AudioNode'..
11 PASS audioNode.connect(context.destination, 5, 0) threw exception IndexSizeError : Failed to execute 'connect' on 'AudioNode': output index (5) exceeds number of outputs (1).. 11 PASS audioNode.connect(context.destination, 5, 0) threw exception IndexSizeError : Failed to execute 'connect' on 'AudioNode': output index (5) exceeds number of outputs (1)..
12 PASS audioNode.connect(context.destination, 0, 5) threw exception IndexSizeError : Failed to execute 'connect' on 'AudioNode': input index (5) exceeds number of inputs (1).. 12 PASS audioNode.connect(context.destination, 0, 5) threw exception IndexSizeError : Failed to execute 'connect' on 'AudioNode': input index (5) exceeds number of inputs (1)..
13 PASS audioNode.connect(context.destination, 0, 0) did not throw exception. 13 PASS audioNode.connect(context.destination, 0, 0) did not throw exception.
14 PASS exception thrown when connecting to other context's node. 14 PASS exception thrown when connecting to other context's node.
15 PASS context3 = new AudioContext(1, 44100, 44100) did not throw exception. 15 PASS context3 = new AudioContext(1, 44100, 44100) threw exception TypeError: Fai led to construct 'AudioContext': parameter 1 ('contextOptions') is not an object ..
16 PASS context3 is not an OfflineAudioContext
17 PASS AudioNode is an EventTarget 16 PASS AudioNode is an EventTarget
18 PASS successfullyParsed is true 17 PASS successfullyParsed is true
19 18
20 TEST COMPLETE 19 TEST COMPLETE
21 20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698