mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
18 lines
655 B
JavaScript
18 lines
655 B
JavaScript
function test() {
|
|
function quitRequestObserver(aSubject, aTopic, aData) {
|
|
ok(aTopic == "quit-application-requested" &&
|
|
aSubject instanceof Components.interfaces.nsISupportsPRBool,
|
|
"Received a quit request we're going to deny");
|
|
aSubject.data = true;
|
|
}
|
|
|
|
// ensure that we don't accidentally quit
|
|
Services.obs.addObserver(quitRequestObserver, "quit-application-requested", false);
|
|
|
|
ok(!Application.quit(), "Tried to quit - and didn't succeed");
|
|
ok(!Application.restart(), "Tried to restart - and didn't succeed");
|
|
|
|
// clean up
|
|
Services.obs.removeObserver(quitRequestObserver, "quit-application-requested", false);
|
|
}
|