haikuwebkit/LayoutTests/fast/frames/adopt-iframe-into-itself.html

15 lines
336 B
HTML

<script>
if (window.testRunner)
testRunner.dumpAsText();
function test() {
try {
var frame = document.getElementById("f");
var childNode = frame.contentDocument.adoptNode(frame);
} catch(ex) {
alert(ex);
}
}
</script>
<iframe id="f" onload="test();" src="data:text/html,<body></body>"></iframe>