blob: ac23cd1fec2e76c6dc1f7882a0e149fcada7a6b0 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/ChromeTask.js"></script>
<script>
function test() {
location.hash = "foobar"
if (!document.documentURI.includes("#foobar")) {
opener.postMessage("Wrong documentURI", "*");
window.close();
} else {
ChromeTask.spawn(null, () => {
return {
documentURI: actorParent.documentURI.spec,
principalURI: actorParent.documentPrincipal.URI.spec
};
}).then((uriAndPrincipal) => {
if (!uriAndPrincipal.documentURI.includes("#foobar")) {
opener.postMessage("Wrong documentURI in the parent process", "*");
} else if (!uriAndPrincipal.principalURI.includes("moz-nullprincipal")) {
opener.postMessage("Wrong document principal in the parent process", "*");
} else {
opener.postMessage("done", "*");
}
window.close();
});
}
}
</script>
</head>
<body onload="setTimeout(test)">
</body>
</html>
|