electron/spec/fixtures/api/localstorage.html

11 lines
243 B
HTML

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