Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Test the AudioContext.destination interface</title> |
michael@0 | 5 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <script type="text/javascript" src="webaudio.js"></script> |
michael@0 | 7 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 8 | </head> |
michael@0 | 9 | <body> |
michael@0 | 10 | <pre id="test"> |
michael@0 | 11 | <script class="testbody" type="text/javascript"> |
michael@0 | 12 | |
michael@0 | 13 | // Work around bug 911777 |
michael@0 | 14 | SpecialPowers.forceGC(); |
michael@0 | 15 | SpecialPowers.forceCC(); |
michael@0 | 16 | |
michael@0 | 17 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 18 | addLoadEvent(function() { |
michael@0 | 19 | var ac = new AudioContext(); |
michael@0 | 20 | ok(ac.destination.maxChannelCount > 0, "We can query the maximum number of channels"); |
michael@0 | 21 | |
michael@0 | 22 | var oac = new OfflineAudioContext(2, 1024, 48000); |
michael@0 | 23 | ok(oac.destination.maxChannelCount, 2, "This OfflineAudioContext should have 2 max channels."); |
michael@0 | 24 | |
michael@0 | 25 | oac = new OfflineAudioContext(6, 1024, 48000); |
michael@0 | 26 | ok(oac.destination.maxChannelCount, 6, "This OfflineAudioContext should have 6 max channels."); |
michael@0 | 27 | |
michael@0 | 28 | expectException(function() { |
michael@0 | 29 | oac.destination.channelCount = oac.destination.channelCount + 1; |
michael@0 | 30 | }, DOMException.INDEX_SIZE_ERR); |
michael@0 | 31 | |
michael@0 | 32 | SimpleTest.finish(); |
michael@0 | 33 | }); |
michael@0 | 34 | |
michael@0 | 35 | </script> |
michael@0 | 36 | </pre> |
michael@0 | 37 | </body> |
michael@0 | 38 | </html> |