summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/navigate.html
blob: f68123188e8e60185e752f033ebc5dfe0f413dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head>
    <script src="/tests/SimpleTest/EventUtils.js"></script>
    <script src="NavigationUtils.js"></script>
    <script>
    function navigate() {
        var args = window.location.hash.substring(1).split(",");
        var target = args[0];
        var mechanism = args[1];

        switch (mechanism) {
        case "location":
          // eslint-disable-next-line no-eval
          navigateByLocation(eval(target));
          break;
        case "open":
          navigateByOpen(target);
          break;
        case "form":
          navigateByForm(target);
          break;
        case "hyperlink":
          navigateByHyperlink(target);
          break;
        }
    }
    </script>
</head>
<body onload="navigate();">
<script>
var args = window.location.hash.substring(1).split(",");
var target = args[0];
var mechanism = args[1];
// eslint-disable-next-line no-unsanitized/method
document.write("target=" + target + " mechanism=" + mechanism);
</script>
</body>
</html>