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
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <script>
4 var context = new window.OfflineAudioContext(1, 100, 48000);
5 context.oncomplete = function(e) {
6 document.documentElement.removeAttribute("class");
7 };
8 var panner = context.createPanner();
9 panner.setPosition(0, 3, 0); // directly overhead
10 panner.connect(context.destination);
11 var source = context.createOscillator();
12 source.connect(panner);
13 source.start(0);
14 context.startRendering();
15 </script>