content/media/test/crashtests/933156.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 function boom()
     5 {
     6   var ac = new window.AudioContext();
     8   var panner = ac.createPanner();
     9   panner.setPosition(8, 0.7643051305237005, 0.10292575673733972);
    11   var oscillator = ac.createOscillator();
    12   oscillator.connect(panner);
    13   oscillator.start(0);
    15   setTimeout(function() {
    16     panner.panningModel = 'equalpower';
    17     oscillator.stop(0);
    18     document.documentElement.removeAttribute("class");
    19   }, 0.5);
    20 }
    21 boom();
    22 </script>
    23 </html>

mercurial