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 // linearly dependent
9 context.listener.setOrientation(0, 0, -6.311749985202524e+307, 0, 0, 6.311749985202524e+307);
10 var panner = context.createPanner();
11 panner.setPosition(1, 2, 3);
12 panner.connect(context.destination);
13 var source = context.createOscillator();
14 source.connect(panner);
15 source.start(0);
16 context.startRendering();
17 </script>