Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webaudio / scriptprocessornode-0-output-channels-expected.txt
bloba5de8c211e7522f2e6791179dab207dc9f29383d
1 Test Connecting 0-output channel ScriptProcessor to Another Node
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS context = new OfflineAudioContext(1, 1024, 44100) 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 exception.
9 PASS scriptNode2 = context.createScriptProcessor(1024, 1, 1) did not throw an exception.
10 PASS scriptNode1.connect(analyzer) threw InvalidAccessError: Failed to execute 'connect' on 'AudioNode': cannot connect a ScriptProcessorNode with 0 output channels to any destination node..
11 PASS scriptNode2.connect(analyzer) did not throw an exception.
12 PASS successfullyParsed is true
14 TEST COMPLETE