Sign in
chromium
/
codesearch
/
chromium
/
src
/
HEAD
/
.
/
content
/
test
/
data
/
accessibility
/
html
/
iframe-create.html
blob: 230e51f7e6c141dbd204e6b141dcd41bc9785e40 [
file
] [
log
] [
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>