Created
May 29, 2019 22:16
-
-
Save daleharvey/61a9e453bc6487879ac88cd86315f6f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Any copyright is dedicated to the Public Domain. | |
* http://creativecommons.org/publicdomain/zero/1.0/ */ | |
const DELAY_MS = 200; | |
const AUTOPLAY_HTML = `<!DOCTYPE HTML> | |
<html dir="ltr" xml:lang="en-US" lang="en-US"> | |
<head> | |
<meta charset="utf8"> | |
</head> | |
<body> | |
<audio autoplay="autoplay" > | |
<source src="audio.ogg" /> | |
</audio> | |
<script> | |
document.location.href = '#foo'; | |
</script> | |
</body> | |
</html>`; | |
function handleRequest(req, resp) { | |
resp.processAsync(); | |
resp.setHeader("Cache-Control", "no-cache", false); | |
resp.setHeader("Content-Type", "text/html;charset=utf-8", false); | |
let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer); | |
resp.write(AUTOPLAY_HTML); | |
timer.init(() => { | |
resp.write(""); | |
resp.finish(); | |
}, DELAY_MS, Ci.nsITimer.TYPE_ONE_SHOT); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment