electron/spec/fixtures/api/unload.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
223 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('node:fs').writeFileSync(__dirname + '/unload', 'unload');
2013-08-29 03:40:07 +00:00
}, false);
</script>
</body>
</html>