blob: 54e431ed7feb544f8120b98c2baac0645e24a75b (
plain)
1
2
3
4
5
6
7
|
function test() {
const Cc = SpecialPowers.Cc;
const Ci = SpecialPowers.Ci;
let debug = Cc["@mozilla.org/xpcom/debug;1"].getService(Ci.nsIDebug2);
debug.abort("test_crash.js", 5);
ok(false, "Should pass");
}
|