summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/file_browserElement_CookiesNotThirdParty.html
blob: 62f39d8ff3244269a7f2486bcd861e5c390031b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<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>