content/media/test/crashtests/878014.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

michael@0 1 <!DOCTYPE html>
michael@0 2 <html class="reftest-wait">
michael@0 3 <script>
michael@0 4 try { o2 = new window.AudioContext(1, 15, 44100); } catch(e) { }
michael@0 5 try { o5 = o2.createDelay(0.1); } catch(e) { }
michael@0 6 try { o6 = o2.createPanner(); } catch(e) { }
michael@0 7 try { o8 = o2.createBufferSource(); } catch(e) { }
michael@0 8 try { o9 = (function() {
michael@0 9 var buf = o2.createBuffer(1, 12134, o2.sampleRate);
michael@0 10 for(var j=0; j<1; ++j) {
michael@0 11 for(var i=0; i<12134; ++i) { buf.getChannelData(j)[i] = Math.sin(i * (-127));}
michael@0 12 }
michael@0 13 return buf;
michael@0 14 })(); } catch(e) { }
michael@0 15 try { o8.buffer = o9; } catch(e) { }
michael@0 16 try { o8.connect(o6); } catch(e) { }
michael@0 17 try { o6.connect(o5, 0, 0) } catch(e) { }
michael@0 18 try { o8.buffer = (function() {
michael@0 19 var buf = o2.createBuffer(1, 5409, o2.sampleRate);
michael@0 20 for(var j=0; j<1; ++j) {
michael@0 21 for(var i=0; i<5409; ++i) { buf.getChannelData(j)[i] = Math.sin(i * (-1));}
michael@0 22 }
michael@0 23 return buf;
michael@0 24 })(); } catch(e) { }
michael@0 25 setTimeout(function() { try { o5.delayTime.setValueAtTime(0.78, 121560862.56366833); } catch(e) { } setTimeout(done, 0); },128)
michael@0 26 try { o5.delayTime.value = 0.4283; } catch(e) { }
michael@0 27
michael@0 28 function done() {
michael@0 29 document.documentElement.removeAttribute("class");
michael@0 30 }
michael@0 31 </script>

mercurial