blob: efac291708fe8b370fd46bf646f1d1c1b6bbd750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<script>
function redirectAndFireXHR() {
const XHR = new XMLHttpRequest();
document.location.assign('data:text/html,final iframe content');
XHR.open('GET', 'data:text/html,1', false);
XHR.send();
}
function handlePageHide() {
window.parent.finishTest();
}
</script>
</head>
<body onload="redirectAndFireXHR()"
onpagehide="handlePageHide()">
initial iframe content
</body>
</html>
|