blob: 22dc8fb52096ca780835fdec99e1e198e0c6b544 [file] [log] [blame]
<html>
<head>
<title>Popup Blocked Post Blank</title>
<script>
function test() {
// We rely on sequential ordering of POST processing.
var form = document.getElementById('form');
form.submit();
}
</script>
</head>
<body onload="test()">
If the POST pop-up was not blocked then there will be a warning message displayed in a new tab. Otherwise, the test passes.
<form id="form" method="post" action="popup-success.html" target="_blank">
<input type="submit" value="Submit to new window"/>
</form>
</body>
</html>