content/media/test/crashtests/907986-2.html

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

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 // zero up vector
     9 context.listener.setOrientation(0, 6.311749985202524e+307, 0, 0, 0, 0);
    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>

mercurial