content/media/test/crashtests/910171-1.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, 4096, 48000);
     5 context.oncomplete = function(e) {
     6     document.documentElement.removeAttribute("class");
     7 };
     8 var delay = context.createDelay();
     9 delay.connect(context.destination);
    10 delay.delayTime.value = 1.0;
    11 var buffer = context.createBuffer(1, 2048, context.sampleRate);
    12 var source = context.createBufferSource();
    13 source.buffer = buffer;
    14 source.connect(delay);
    15 source.start();
    16 context.startRendering();
    17 </script>

mercurial