mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 18:09:16 +00:00
22 lines
638 B
HTML
22 lines
638 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
<meta charset="utf-8">
|
|
<title>Test for mozinterruptbegin/end in AudioContext</title>
|
|
|
|
mozAudioChannelTest = <span id="mozAudioChannelTest">FAIL</span>
|
|
|
|
<script type="application/javascript">
|
|
|
|
var ac = new AudioContext();
|
|
|
|
ac.onmozinterruptbegin = function(evt) {
|
|
document.getElementById("mozAudioChannelTest").innerHTML = "mozinterruptbegin";
|
|
}
|
|
|
|
ac.addEventListener('mozinterruptend', function() {
|
|
document.getElementById("mozAudioChannelTest").innerHTML = "mozinterruptend";
|
|
}, false);
|
|
|
|
document.getElementById("mozAudioChannelTest").innerHTML = "READY";
|
|
|
|
</script>
|