Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<head>
<title>sessionStorage basic test</title>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
<script type="text/javascript">
function startTest()
{
  // Check that we do not crash when we access the sessionStorage object from
  var exceptionCaught = false;
  try {
    sessionStorage;
  }
  catch (e) {
    is(e.result, Cr.NS_ERROR_NOT_AVAILABLE,
       "Testing that we get the expected exception.");
    exceptionCaught = true;
  }
  is(exceptionCaught, true, "Testing that an exception was thrown.");
  SimpleTest.finish();
}
</script>
</head>
<body onload="startTest();">
</body>
</html>