Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / docshell / test / unit_ipc / test_pb_notification_ipc.js
blob413037b36a9198566f1fc821904c259062f10f45
1 function run_test() {
2   var notifications = 0;
3   var obs = {
4     observe(aSubject, aTopic) {
5       Assert.equal(aTopic, "last-pb-context-exited");
6       notifications++;
7     },
8   };
9   Services.obs.addObserver(obs, "last-pb-context-exited");
11   run_test_in_child("../unit/test_pb_notification.js", function () {
12     Assert.equal(notifications, 1);
13     do_test_finished();
14   });