summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/localstorage/frameLocalStorageCookieSettings.html
blob: de42e6bb9049f61b8be70da9f371c971c5742d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>localStorage cookies settings test</title>

<script type="text/javascript" src="interOriginFrame.js"></script>

</head>
<body>
<script type="text/javascript">
  try {
    localStorage.setItem("contentkey", "test-value");
    ok(false, "Setting localStorageItem should throw a security exception");
  } catch(ex) {
    is(ex.name, "SecurityError");
  }

  finishTest();
</script>
</body>
</html>