electron/spec/fixtures/api/unload.html

10 lines
218 B
HTML
Raw Normal View History

2013-08-29 03:40:07 +00:00
<html>
<body>
<script type="text/javascript" charset="utf-8">
window.addEventListener('unload', function (e) {
require('fs').writeFileSync(__dirname + '/unload', 'unload');
2013-08-29 03:40:07 +00:00
}, false);
</script>
</body>
</html>