mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-27 09:48:38 +09:00
12 lines
276 B
JavaScript
12 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);
|
|
}
|