electron/spec/fixtures/api/localstorage.html

12 lines
284 B
HTML
Raw Normal View History

<html>
<body>
<script type="text/javascript" charset="utf-8">
window.localStorage.setItem('test', 'test');
var ipcRenderer = require('electron').ipcRenderer;
ipcRenderer.on('getcount', function() {
ipcRenderer.send('count', window.localStorage.length);
})
</script>
</body>
</html>