summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/browser/file_redirect_to.html
blob: 28c0b53713ccf0393d50744f9b589c6bbbb4c6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>redirected!</title>
<script>
window.addEventListener("load", () => {
  var event = new Event("RedirectDone");
  document.dispatchEvent(event);
});
</script>
<body>
u got redirected, bro
</body>
</html>