blob: 2a7d955fe10b82f8b12e04f8c2f04bd4331ba669 [file] [log] [blame]
<html>
<head>
<script>
function runTest()
{
try {
if (window.localStorage) {
console.log("PASS: window.localStorage WAS accessible");
}
} catch(e) {
console.log("FAIL: window.localStorage is NOT accessible");
console.log("Exception: " + e.message);
}
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body onload="runTest()">
</body>
</html>