mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
fdbfd15c3f
The test for the other change in bug 806127 (which affects IndexedDB) is in bug 806168.
26 lines
543 B
HTML
26 lines
543 B
HTML
<html>
|
|
<body>
|
|
file_browserElement_CookiesNotThirdParty.html
|
|
|
|
<script type='text/javascript;version=1.7'>
|
|
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>
|