blob: 30bdc5d5c526865a0eba54606b53d4d42ee8365b (
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
39
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<iframe id="nestframe"></iframe>
<script>
let nestframe = document.getElementById("nestframe");
window.addEventListener("message", (event) => {
parent.postMessage(event.data, "*");
// Only create second iframe once
if(event.data.type === "https") {
return;
}
nestframe.contentDocument.body.innerHTML = `
<iframe id="frametwo"
src=\"https://example.com\"
onload=\"parent.postMessage({status:'loaded', type: 'https'}, '*')\"
onerror=\"parent.postMessage({status:'blocked', type: 'https'}, '*')\"
></iframe>`;
});
nestframe.onload = (event) => {
nestframe.contentDocument.body.innerHTML = `
<iframe id="frameone"
src=\"http://example.com\"
onload=\"parent.postMessage({status:'loaded', type: 'http'}, '*')\"
onerror=\"parent.postMessage({status:'blocked', type: 'http'}, '*')\"
></iframe>`;
}
nestframe.src = "about:blank";
</script>
</body>
</html>
|