blob: f05ec4bc61311bff22cc704024f1bb1affbf8ab6 [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>