blob: 304cc54ae4448b84bf43aad3279b2dd198add165 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Iframer</title>
<body></body>
<script>
const child = document.createElement("iframe");
child.src = new URL(window.location).searchParams.get("url");
document.body.appendChild(child);
</script>