blob: 4cb3621d2864d733630ed82e2a4b2174102b304e [file] [log] [blame]
<?php
header('Content-Type: text/html');
header('Cache-Control: max-age=0');
header('Etag: 123456789');
$cookie = "speculativeRequestValidation=" . uniqid();
header('Set-Cookie: ' . $cookie);
?>
<!DOCTYPE html>
<body>
<script src="request-headers-script.php"></script>
<script>
<?php
echo "sentSetCookieHeader = '" . $cookie . "';";
?>
</script>
</body>