mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
crashtest for bug 933156
--HG-- extra : transplant_source : %9D/%19%13%80%D3cY%5D%93%FA%17%FB%CFTO%5Ex%82%C9
This commit is contained in:
parent
71470e62c6
commit
7b6a4ca796
23
content/media/test/crashtests/933156.html
Normal file
23
content/media/test/crashtests/933156.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!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>
|
@ -61,6 +61,7 @@ load 925619-1.html
|
||||
load 925619-2.html
|
||||
load 926619.html
|
||||
load 933151.html
|
||||
load 933156.html
|
||||
load offline-buffer-source-ended-1.html
|
||||
skip-if(B2G) load oscillator-ended-1.html # intermittent B2G timeouts, bug 920338
|
||||
skip-if(B2G) load oscillator-ended-2.html # intermittent B2G timeouts, bug 920338
|
||||
|
Loading…
Reference in New Issue
Block a user