blob: 3731806d16706cb1e61aa919d0a3ba220d27ecfb [file] [log] [blame]
<html>
<head>
<title>Popup created using window.open</title>
<script>
function deleteframe() {
var frame = document.getElementById('frame');
frame.parentNode.removeChild(frame);
}
</script>
</head>
<body>
pop-up test page
<iframe id="frame" src="popup-subframe.html"></iframe>
</body>
</html>