blob: ebc163c3f3dfb7ca41d278410b3e01a83a32557c [file] [log] [blame]
<!DOCTYPE html>
<html>
<title>Checks that a script generated POST request does not circumvent third-party cookie rules</title>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.dumpChildFrames();
// Start with a clean state, as otherwise an expired cookie for this domain could affect behavior with CFNetwork.
// Can be removed once <rdar://problem/10080130> is fixed.
if (testRunner.setPrivateBrowsingEnabled)
testRunner.setPrivateBrowsingEnabled(true);
testRunner.setBlockThirdPartyCookies(true);
}
function runTest()
{
document.getElementById('form').submit();
}
</script>
<body onload="runTest()">
<div>
<form id="form" action="http://localhost:8000/security/cookies/resources/set-a-cookie.php" method="POST" target="iframe">
<input type="submit" />
</form>
<iframe src="javascript:false" name="iframe"></iframe>
</div>
</body>
</html>