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

<!--
@WIN-ALLOW:ia2_hypertext=*
@WAIT-FOR:done
-->
<body>
</body>
<script>
  const iframe = document.createElement('iframe');
  iframe.srcdoc = '<a href="/">done</a>';
  document.body.appendChild(iframe);
</script>