This file is indexed.

/usr/share/xul-ext/tabmixplus/modules/SingleWindowModeUtils.jsm is in xul-ext-tabmixplus 0.5.0.0-1~deb8u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/* globals PanelUI */
"use strict";

this.EXPORTED_SYMBOLS = ["SingleWindowModeUtils"];

const {interfaces: Ci, utils: Cu} = Components;

Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://tabmixplus/Services.jsm");
Cu.import("resource://gre/modules/PrivateBrowsingUtils.jsm");

this.SingleWindowModeUtils = {
 /**
  * @brief Locate a browser window.
  *
  * @param aExclude  A scripted window object that we do not want to use.
  *
  * @returns         A scripted window object representing a browser
  *                  window that is not the same as aExclude, and is
  *                  additionally not a popup window.
  */
  getBrowserWindow: function(aExclude) {
    // on per-window private browsing mode,
    // allow to open one normal window and one private window in single window mode
    var isPrivate = PrivateBrowsingUtils.isWindowPrivate(aExclude);

    function isSuitableBrowserWindow(win) {
      return (!win.closed && win.document.readyState == "complete" &&
              win.toolbar.visible && win != aExclude &&
              PrivateBrowsingUtils.isWindowPrivate(win) == isPrivate);
    }

    var windows = Services.wm.getEnumerator("navigator:browser");
    while (windows.hasMoreElements()) {
      let win = windows.getNext();
      if (isSuitableBrowserWindow(win))
        return win;
    }
    return null;
  },

  newWindow: function(aWindow) {
    if (!aWindow.Tabmix.singleWindowMode)
      return false;

    if (!aWindow.arguments || aWindow.arguments.length === 0)
      return false;

    aWindow.addEventListener("load", function _onLoad(aEvent) {
      let window = aEvent.currentTarget;
      window.removeEventListener("load", _onLoad, false);
      let docElement = window.document.documentElement;
      if (docElement.getAttribute("windowtype") == "navigator:browser")
        this.onLoad(window);
    }.bind(this), false);

    aWindow.gTMPprefObserver.setLink_openPrefs();

    var existingWindow = this.getBrowserWindow(aWindow);
    // no navigator:browser window open yet?
    if (!existingWindow)
      return false;

    existingWindow.focus();
    // save dimensions
    var win = aWindow.document.documentElement;
    aWindow.__winRect = {
      sizemode: win.getAttribute("sizemode"),
      width: win.getAttribute("width"),
      height: win.getAttribute("height"),
      screenX: win.getAttribute("screenX"),
      screenY: win.getAttribute("screenY")
    };
    // hide the new window
    aWindow.resizeTo(10, 10);
    aWindow.moveTo(-50, -50);
    win.removeAttribute("sizemode");
    win.setAttribute("width", 0);
    win.setAttribute("height", 0);
    win.setAttribute("screenX", aWindow.screen.availWidth + 10);
    win.setAttribute("screenY", aWindow.screen.availHeight + 10);

    return true;
  },

  onLoad: function(newWindow) {
    var existingWindow = this.getBrowserWindow(newWindow);
    // no navigator:browser window open yet?
    if (!existingWindow)
      return;

    if (!newWindow.arguments || newWindow.arguments.length === 0)
      return;
    var args = newWindow.arguments;

    var existingBrowser = existingWindow.gBrowser;
    existingWindow.tablib.init(); // just in case tablib isn't init yet
    var uriToLoad = args[0];

    var urls = [];
    var params = {
      referrerURI: null,
      referrerPolicy: (function() {
        if (TabmixSvc.version(390)) {
          let policy = TabmixSvc.version(490) ? "REFERRER_POLICY_UNSET" : "REFERRER_POLICY_DEFAULT";
          return Ci.nsIHttpChannel[policy];
        }
        return null;
      }()),
      postData: null,
      allowThirdPartyFixup: false
    };
    if (uriToLoad instanceof Ci.nsISupportsArray) {
      let count = uriToLoad.Count();
      for (let i = 0; i < count; i++) {
        let uriString = uriToLoad.GetElementAt(i).QueryInterface(Ci.nsISupportsString);
        urls.push(uriString.data);
      }
    } else if (uriToLoad instanceof newWindow.XULElement || uriToLoad instanceof Ci.nsIDOMXULElement) {
      // some extension try to swap a tab to new window
      // we don't do anything in this case.
      // just close the new window
    } else if (args.length >= 3) {
      params.referrerURI = args[2];
      if (TabmixSvc.version(390)) {
        if (typeof (params.referrerURI) == "string") {
          try {
            params.referrerURI = existingWindow.makeURI(params.referrerURI);
          } catch (e) {
            params.referrerURI = null;
          }
        }
        if (args[5] !== undefined)
          params.referrerPolicy = args[5];
      }
      params.postData = args[3] || null;
      params.allowThirdPartyFixup = args[4] || false;
      urls = [uriToLoad];
    } else {
      urls = uriToLoad ? uriToLoad.split("|") : ["about:blank"];
    }

    var firstTabAdded;
    try {
      // open the tabs in current window
      if (urls.length) {
        firstTabAdded = existingBrowser.selectedTab;
        let isBlankTab = existingBrowser.isBlankNotBusyTab(firstTabAdded);
        if (isBlankTab)
          existingWindow.openLinkIn(urls[0], "current", params);
        else
          firstTabAdded = existingBrowser.addTab(urls[0], params);
        for (let i = 1; i < urls.length; ++i)
          existingBrowser.addTab(urls[i]);
      }
    } catch (ex) { }
    try {
      // we need to close the window after timeout so other extensions don't fail.
      // if we don't add this here BrowserShutdown fails
      newWindow.FullZoom.init = function() {};
      newWindow.FullZoom.destroy = function() {};
      newWindow.OfflineApps.uninit = function() {};
      newWindow.IndexedDBPromptHelper.init();
      if (TabmixSvc.version(420)) {
        newWindow.gMenuButtonBadgeManager.uninit = function() {
          if (typeof PanelUI == "object" && PanelUI.panel) {
            PanelUI.panel.removeEventListener("popupshowing", this, true);
          }
        };
      }
      if (!TabmixSvc.version(440)) {
        let obs = Services.obs;
        obs.addObserver(newWindow.gSessionHistoryObserver, "browser:purge-session-history", false);
        if (!TabmixSvc.version(340))
          obs.addObserver(newWindow.gFormSubmitObserver, "invalidformsubmit", false);
        obs.addObserver(newWindow.gXPInstallObserver, "addon-install-blocked", false);
        obs.addObserver(newWindow.gXPInstallObserver, "addon-install-failed", false);
        obs.addObserver(newWindow.gXPInstallObserver, "addon-install-complete", false);
        let pluginCrashed = TabmixSvc.version(400) ? "NPAPIPluginCrashed" : "pluginCrashed";
        obs.addObserver(newWindow.gPluginHandler[pluginCrashed], "plugin-crashed", false);
      }
      newWindow.gPrivateBrowsingUI.uninit = function() {};
    } catch (ex) {
      existingWindow.Tabmix.obj(ex);
    }
    existingWindow.setTimeout(function() {
      try {
        // restore window dimensions, to prevent flickering in the next restart
        var win = newWindow.document.documentElement;
        if (typeof newWindow.__winRect == "object") {
          for (let attr of Object.keys(newWindow.__winRect)) {
            win.setAttribute(attr, newWindow.__winRect[attr]);
          }
        }
        newWindow.close();
        if (firstTabAdded) {
          existingBrowser.selectedTab = firstTabAdded;
          existingBrowser.ensureTabIsVisible(firstTabAdded);
        }
        // for the case the window is minimized or not in focus
        existingWindow.focus();
      } catch (ex) {
        existingWindow.Tabmix.obj(ex);
      }
    }, 0);
  }
};