blob: 1517a479fd89b400b8413c264b193561c8678900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
var Cc = Components.classes;
var Ci = Components.interfaces;
function run_test() {
var notifications = 0;
var obs = {
observe: function(aSubject, aTopic, aData) {
do_check_eq(aTopic, "last-pb-context-exited");
notifications++;
}
};
var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
os.addObserver(obs, "last-pb-context-exited", false);
run_test_in_child("../unit/test_pb_notification.js",
function() {
do_check_eq(notifications, 1);
do_test_finished();
});
}
|