gecko/content/media/test/crashtests/880202.html
Ehsan Akhgari cbebfc17c9 Bug 886165 - Hide the alternate names in the spec behind prefs which are turned off by default; r=roc
This patch uses one pref per interface, to allow us finer grain control over
which ones we might need to turn on in the future.
2013-06-23 19:22:10 -04:00

34 lines
773 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<script>
var Context0= new window.OfflineAudioContext(15,12119,44100)
var BufferSource1=Context0.createBufferSource();
var Gain0=Context0.createGain();
var Panner0=Context0.createPanner();
Context0.listener.setPosition(29,135,158);
BufferSource1.connect(Gain0);
BufferSource1.buffer=function(){
var channels=3;
var length=53325;
var Buffer=Context0.createBuffer(channels,length,Context0.sampleRate);
for(var y=0;y<channels;y++){
var bufferData= Buffer.getChannelData(y);
for (var i = 0; i < length; ++i) {
bufferData[i] = i*(270);
}
};
return Buffer;
}();
Gain0.connect(Panner0);
Panner0.panningModel="equalpower";
setTimeout(function(){
document.documentElement.removeAttribute("class");
},500)
</script>