gecko/testing/mochitest/tests/browser/browser_sanityException.js

6 lines
104 B
JavaScript

function test() {
ok(true, "ok called");
expectUncaughtException();
throw "uncaught exception";
}