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
michael@0 | 1 | <script> |
michael@0 | 2 | o1 = new window.AudioContext(); |
michael@0 | 3 | o5 = o1.createConvolver(); |
michael@0 | 4 | o5.buffer = function() { |
michael@0 | 5 | var buffer = o1.createBuffer(2, 3, 33120); |
michael@0 | 6 | for(var c=0; c<2; c++) { |
michael@0 | 7 | for(var i=0; i<3; i++) { |
michael@0 | 8 | buffer.getChannelData(c)[i] = -1; |
michael@0 | 9 | } |
michael@0 | 10 | } |
michael@0 | 11 | return buffer; |
michael@0 | 12 | }(); |
michael@0 | 13 | </script> |