blob: fa98d6d4b6cca5c9ba032deb665c634f8890b160 [file] [log] [blame]
<script>
var otherDocument = opener.frames[0].document;
var form = otherDocument.createElement("form");
form.setAttribute("action", "notify-done.html");
form.setAttribute("name", "TestForm");
form.setAttribute("target", "testFrame");
form.setAttribute("method", "post");
var button = otherDocument.createElement("input");
button.setAttribute("type", "submit");
form.appendChild(button);
otherDocument.body.appendChild(form);
form.submit();
window.close();
</script>