blob: b703968e671464f431d7a8b257c662cc488a45ab [file] [log] [blame]
<html>
<head>
<script>
function log(a)
{
alert(a + "");
}
function runTest()
{
log("Final window, localStorage's length is: " + localStorage.length);
log("Final window, item is: " + localStorage.getItem("testItem"));
if (testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body onload="runTest();">
</body>
</html>