blob: cc1c9263860f0f5c9eb34de4c0dcb597d4b4897d [file] [log] [blame]
<!doctype html>
<title>Set cookie from location.hash</title>
<script>
if (location.hash)
document.cookie = decodeURIComponent(location.hash.substr(1))+'=yes;path=/;max-age=15';
</script>