this code works in Firefox and Safari, but in Chrome Version 33.0.1750.149 the localStorage is always empty after restart. (In DevTools as well as accessed through console)
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function saveStuff() {
localStorage.setItem('localKey', 'localValue');
}
</script>
</head>
<body onload="localStorage">
<button type="button" onclick="saveStuff()">Save</button>
</body>
</html>
What am I doing wrong?
The problem was solved by disabling the option "Block third party cookies".