electron/spec/fixtures/api/unload.html
2013-08-29 18:03:14 +08:00

9 lines
218 B
HTML

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