mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7b6a4ca796
--HG-- extra : transplant_source : %9D/%19%13%80%D3cY%5D%93%FA%17%FB%CFTO%5Ex%82%C9
24 lines
491 B
HTML
24 lines
491 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function boom()
|
|
{
|
|
var ac = new window.AudioContext();
|
|
|
|
var panner = ac.createPanner();
|
|
panner.setPosition(8, 0.7643051305237005, 0.10292575673733972);
|
|
|
|
var oscillator = ac.createOscillator();
|
|
oscillator.connect(panner);
|
|
oscillator.start(0);
|
|
|
|
setTimeout(function() {
|
|
panner.panningModel = 'equalpower';
|
|
oscillator.stop(0);
|
|
document.documentElement.removeAttribute("class");
|
|
}, 0.5);
|
|
}
|
|
boom();
|
|
</script>
|
|
</html>
|