gecko-dev/testing/mochitest/redirect.html
Andrew Swan 3493324938 Bug 1451513 Part 2: Convert mochikit to a webextension r=jmaher,kmag
This is another quick-and-dirty port.  Some of the test logic could
probably be moved to unprivileged extension code but there's no urgent
reason to do that right now.

MozReview-Commit-ID: Af0XQbakLsx

--HG--
rename : testing/mochitest/bootstrap.js => testing/mochitest/api.js
extra : rebase_source : 3870a63d96c0b2d73ccc468393c75e17b884383f
extra : source : 604167986098726b86ea0f9252a63abab36d35c4
2018-07-05 15:42:11 -07:00

41 lines
1.0 KiB
HTML

<html>
<head>
<title>redirecting...</title>
<script type="text/javascript">
function redirect(aURL) {
// We create a listener for this event in browser-test.js which will
// get picked up when specifying --flavor=chrome or --flavor=a11y
var event = new CustomEvent("contentEvent", {
bubbles: true,
detail: {
"data": aURL + location.search,
"type": "loadURI"
}
});
document.dispatchEvent(event);
}
function redirectToHarness() {
redirect("chrome://mochikit/content/harness.xul");
}
function onLoad() {
// Wait for MozAfterPaint, since the listener in browser-test.js is not
// added until then.
window.addEventListener("MozAfterPaint", function() {
setTimeout(redirectToHarness, 0);
// In case the listener is not ready, re-try periodically
setInterval(redirectToHarness, 5000);
}, {once: true});
}
</script>
</head>
<body onload="onLoad();">
redirecting...
</body>
</html>