chromium/third_party/blink/web_tests/external/wpt/fetch/private-network-access/resources/iframer.html

<!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>