1
    2
    3
    4
    5
    6
    7
    8
    9
   10

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

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