Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
<html>
<head>
<meta charset="UTF-8">
</head>
<body class="running">
<script>
window.addEventListener("message", doNavigation);
function doNavigation() {
let destination;
let destinationIdentifier = window.location.hash.substring(1);
switch (destinationIdentifier) {
case "blank":
destination = "about:blank";
break;
case "secure":
destination =
break;
case "insecure":
destination =
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
break;
}
setTimeout(() => {
let frame = document.getElementById("navigateMe");
frame.onload = done;
frame.onerror = done;
frame.src = destination;
}, 0);
}
function done() {
document.body.classList.toggle("running");
}
</script>
<iframe id="navigateMe" src="dummy_page.html">
</iframe>
</body>
</html>