mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
21 lines
312 B
HTML
21 lines
312 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var ac = new AudioContext();
|
|
// first "suspended" -> "running" transition
|
|
ac.onstatechange = function() {
|
|
ac.onstatechange = null;
|
|
ac.suspend();
|
|
ac.close();
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|
|
|