mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
cbdefabbd2
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.
34 lines
773 B
HTML
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>
|