Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save daleharvey/9a3d080d339633cc7d8257e877cf35fe to your computer and use it in GitHub Desktop.
Save daleharvey/9a3d080d339633cc7d8257e877cf35fe to your computer and use it in GitHub Desktop.
// 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