зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
529 B
HTML
24 строки
529 B
HTML
<html>
|
|
<body>
|
|
file_browserElement_CookiesNotThirdParty.html
|
|
|
|
<script type='text/javascript'>
|
|
if (location.search != "?step=2") {
|
|
// Step 1: Set a cookie.
|
|
document.cookie = "file_browserElement_CookiesNotThirdParty";
|
|
alert("next");
|
|
} else {
|
|
// Step 2: Read the cookie.
|
|
if (document.cookie == "file_browserElement_CookiesNotThirdParty") {
|
|
alert("success: got the correct cookie");
|
|
} else {
|
|
alert('failure: got unexpected cookie: "' + document.cookie + '"');
|
|
}
|
|
|
|
alert("finish");
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|