tenfourfox/toolkit/crashreporter/test/unit/test_override_exception_handler.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

13 lines
276 B
JavaScript

function run_test()
{
// Ensure that attempting to override the exception handler doesn't cause
// us to lose our exception handler.
do_crash(
function() {
CrashTestUtils.TryOverrideExceptionHandler();
},
function(mdump, extra) {
},
true);
}