Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: js/xpconnect/tests/chrome/chrome.toml
<?xml version="1.0"?>
<!--
-->
<!-- test results are displayed in the html:body -->
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for localstorage access with expanded principal. **/
SimpleTest.waitForExplicitFinish();
function go() {
var iwin = document.getElementById('ifr').contentWindow;
var sb = new Cu.Sandbox([iwin], {sandboxPrototype: iwin});
Cu.evalInSandbox("window.localStorage.test_localstorage_with_nsEp = 3",sb);
is(Cu.evalInSandbox("window.localStorage.test_localstorage_with_nsEp",sb), "3");
is(iwin.localStorage.test_localstorage_with_nsEp, "3");
iwin.localStorage.removeItem("test_localstorage_with_nsEp");
SimpleTest.finish();
}
]]>
</script>
<iframe id="ifr" onload="go();" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html" />
</window>