Raw File
browser_sanityException.js
function test() {
  ok(true, "ok called");
  expectUncaughtException();
  throw "this is a deliberately thrown exception";
}
back to top