electron/spec/fixtures/api/crash.html

15 lines
302 B
HTML
Raw Normal View History

2013-11-14 16:10:43 +00:00
<html>
<body>
<script type="text/javascript" charset="utf-8">
var crashReporter = require('crash-reporter');
crashReporter.start({
submitUrl: 'http://127.0.0.1:901007',
autoSubmit: true,
ignoreSystemCrashHandler: true
});
setImmediate(function() { process.crash(); });
</script>
</body>
</html>