Created
May 26, 2019 19:32
-
-
Save daleharvey/2c5a08e44c7c2f611a5a67d5d6504870 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
// Opened with |await BrowserTestUtils.openNewForegroundTab(gBrowser, url);| | |
// never finished (browserLoaded is never called) | |
const DELAY_MS = 500; | |
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>setTimeout(() => { document.location.href = '#foo'; }, 250);</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