blob: 62c58495f707a52d92c5d939c4b6035cc1cade80 (
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
|
<script>
var bc = new BroadcastChannel("file_bug1121701_1");
var pageHideAsserts = undefined;
bc.onmessage = (msgEvent) => {
var msg = msgEvent.data;
var command = msg.command;
if (command == "setInnerHTML") {
document.body.innerHTML = "modified";
window.onpagehide = function(event) {
window.onpagehide = null;
pageHideAsserts = {};
pageHideAsserts.persisted = event.persisted;
// eslint-disable-next-line no-unsanitized/property
pageHideAsserts.innerHTML = window.document.body.innerHTML;
};
window.location.href = msg.testUrl2;
} else if (command == "close") {
bc.postMessage({command: "closed"});
bc.close();
window.close();
}
}
window.onpageshow = function(e) {
var msg = {command: "child1PageShow", persisted: e.persisted, pageHideAsserts};
// eslint-disable-next-line no-unsanitized/property
msg.innerHTML = window.document.body.innerHTML;
bc.postMessage(msg);
};
</script>
|