summaryrefslogtreecommitdiffstats
path: root/docshell/test/unit/test_pb_notification.js
blob: 82018f58523c4b7be011d1b0d6b2219738737dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if (typeof Cc === "undefined")
  Cc = Components.classes;
if (typeof Ci === "undefined")
  Ci = Components.interfaces;

function destroy_transient_docshell() {
  var docshell = Cc["@mozilla.org/docshell;1"].createInstance(Ci.nsIDocShell);
  docshell.setOriginAttributes({privateBrowsingId : 1});
  do_test_pending();
  do_timeout(0, Components.utils.forceGC);
}

function run_test() {
  var obs = {
    observe: function(aSubject, aTopic, aData) {
      do_check_eq(aTopic, "last-pb-context-exited");
      do_test_finished();
    }
  };
  var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
  os.addObserver(obs, "last-pb-context-exited", false);
  destroy_transient_docshell();
}