blob: fe7be443e9dfcad45e9c06de375177936b2a50dc (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>localStorage basic test</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
<script type="text/javascript">
async function startTest()
{
await SpecialPowers.pushPrefEnv({"set": [["dom.storage.client_validation", false]]});
var url = "http://example.com/tests/dom/tests/mochitest/localstorage/frameChromeSlave.html";
var ios = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService);
var ssm = Components.classes["@mozilla.org/scriptsecuritymanager;1"]
.getService(Components.interfaces.nsIScriptSecurityManager);
var dsm = Components.classes["@mozilla.org/dom/localStorage-manager;1"]
.getService(Components.interfaces.nsIDOMStorageManager);
var uri = ios.newURI(url);
var principal = ssm.createContentPrincipal(uri, {});
var storage = dsm.createStorage(window, principal, principal, "");
storage.setItem("chromekey", "chromevalue");
var aframe = document.getElementById("aframe");
aframe.onload = function()
{
is(storage.getItem("chromekey"), "chromevalue");
is(aframe.contentDocument.getElementById("data").innerHTML, "chromevalue");
SimpleTest.finish();
}
aframe.src = "http://example.com/tests/dom/tests/mochitest/localstorage/frameChromeSlave.html";
// Additionally check that we do not crash when we access the localStorage
// object in the owning chrome window (but we should throw). See bug 485396.
var exceptionCaught = false;
try {
localStorage;
}
catch (e) {
is(e.result, Components.results.NS_ERROR_NOT_AVAILABLE,
"Testing that we get the expected exception.");
exceptionCaught = true;
}
is(exceptionCaught, true, "Testing that an exception was thrown.");
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="startTest();">
<iframe src="" id="aframe"></iframe>
</body>
</html>
|