diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-06-18 12:21:11 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-06-18 12:21:11 +0200 |
commit | 38f30cdf759e4f6da96da777c3216b5047d672c1 (patch) | |
tree | 8a67cea642ac53a776a8c450bd8808458b09f23d | |
parent | d608016c32ae4627adb7d7c460e7251d606514c6 (diff) | |
download | UXP-38f30cdf759e4f6da96da777c3216b5047d672c1.tar UXP-38f30cdf759e4f6da96da777c3216b5047d672c1.tar.gz UXP-38f30cdf759e4f6da96da777c3216b5047d672c1.tar.lz UXP-38f30cdf759e4f6da96da777c3216b5047d672c1.tar.xz UXP-38f30cdf759e4f6da96da777c3216b5047d672c1.zip |
[PALEMOON] Findbar - remove unnecessary code (Findbar is no longer in the gBrowser)
Issue #513
-rw-r--r-- | toolkit/content/browser-content.js | 29 | ||||
-rw-r--r-- | toolkit/content/jar.mn | 2 |
2 files changed, 1 insertions, 30 deletions
diff --git a/toolkit/content/browser-content.js b/toolkit/content/browser-content.js index e1114672c..2276f8a0d 100644 --- a/toolkit/content/browser-content.js +++ b/toolkit/content/browser-content.js @@ -841,35 +841,6 @@ var FindBar = { fakeEvent[k] = event[k]; } } -#ifdef MC_PALEMOON - let findBarId = "FindToolbar"; - // The FindBar is in the chrome window's context, not in tabbrowser - // - see also bug 537013 - let chromeWin = null; - try { - chromeWin = content - .QueryInterface(Ci.nsIInterfaceRequestor) - .getInterface(Ci.nsIWebNavigation) - .QueryInterface(Ci.nsIDocShellTreeItem) - .rootTreeItem - .QueryInterface(Ci.nsIInterfaceRequestor) - .getInterface(Ci.nsIDOMWindow) - .QueryInterface(Ci.nsIDOMChromeWindow); - } catch (e) { - Cu.reportError( - "The FindBar - the chrome window's context was not detected:\n" + e); - } - if (chromeWin && chromeWin.document.getElementById(findBarId)) { - try { - chromeWin.document.getElementById(findBarId) - .browser = Services.wm.getMostRecentWindow("navigator:browser") - .gBrowser.mCurrentBrowser; - } catch (e) { - Cu.reportError( - "The FindBar - cannot set the property 'browser':\n" + e); - } - } -#endif // sendSyncMessage returns an array of the responses from all listeners let rv = sendSyncMessage("Findbar:Keypress", { diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn index a5db7e3a1..acec1bdf1 100644 --- a/toolkit/content/jar.mn +++ b/toolkit/content/jar.mn @@ -37,7 +37,7 @@ toolkit.jar: content/global/plugins.html content/global/plugins.css content/global/browser-child.js -* content/global/browser-content.js + content/global/browser-content.js * content/global/buildconfig.html content/global/contentAreaUtils.js #ifndef MOZ_FENNEC |