Files
electron/spec/fixtures/api/unload.html
2023-06-15 10:42:27 -04:00

10 lines
223 B
HTML

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