1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / accessibility / html / iframe-create.html [blame]

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