blob: 6a7b5fd5a1afff13b5e319c5c5727f75137e0b02 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<body>
<script>
let doc = document;
for (let i = 0; i < 4; i++) {
const iframe = doc.createElement("iframe");
iframe.style.border = 'none';
doc.body.appendChild(iframe);
doc = iframe.contentDocument;
doc.head.innerHTML = '<style>html, body { margin: 0px; padding: 0px; overflow: hidden; } </style>'
const div = doc.createElement("div");
div.textContent = `frame ${i}`;
doc.body.appendChild(div);
}
</script>
</body>
</html>