зеркало из https://github.com/mozilla/gecko-dev.git
13 строки
276 B
JavaScript
13 строки
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);
|
||
|
}
|