docshell/test/unit/test_privacy_transition.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 var gNotifications = 0;
     3 var observer = {
     4   QueryInterface: function(iid) {
     5     if (Ci.nsIPrivacyTransitionObserver.equals(iid) ||
     6         Ci.nsISupportsWeakReference.equals(iid) ||
     7         Ci.nsISupports.equals(iid))
     8       return this;
     9     throw Cr.NS_ERROR_NO_INTERFACE;
    10   },
    12   privateModeChanged: function(enabled) {
    13     gNotifications++;
    14   }
    15 }
    17 function run_test() {
    18   var docshell = Cc["@mozilla.org/docshell;1"].createInstance(Ci.nsIDocShell);
    19   docshell.addWeakPrivacyTransitionObserver(observer);
    20   docshell.QueryInterface(Ci.nsILoadContext).usePrivateBrowsing = true;
    21   docshell.QueryInterface(Ci.nsILoadContext).usePrivateBrowsing = false;
    22   do_check_eq(gNotifications, 2);
    23 }

mercurial