2015-07-02 14:12:18 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
window.localStorage.setItem('test', 'test');
|
2015-11-10 07:29:43 +00:00
|
|
|
var ipc = require('ipc-renderer');
|
2015-07-02 14:12:18 +00:00
|
|
|
ipc.on('getcount', function() {
|
|
|
|
ipc.send('count', window.localStorage.length);
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|