chromium/content/test/data/accessibility/html/iframe-create-empty.html

<!--
@WIN-ALLOW:ia2_hypertext=*
-->
<body>
</body>
<script>
  const iframe = document.createElement('iframe');
  iframe.src = 'frame/empty.html';
  document.body.appendChild(iframe);
</script>