Created
May 29, 2019 22:25
-
-
Save daleharvey/9a3d080d339633cc7d8257e877cf35fe 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) | |
/* 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