diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-18 07:22:38 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-18 07:22:38 -0400 |
commit | 8058e08926afc5ec6528d233cf8cc5f7404dad38 (patch) | |
tree | 9a962fe0d9bebbba4603c33b1f12de8cdcf5deef /application/palemoon/base/content/browser.xul | |
parent | 8361c83e41cb4b2306010e3a77836769f0423328 (diff) | |
download | UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.gz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.lz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.xz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.zip |
[PALEMOON] Only use the private autocomplete binding on the URL bar
Diffstat (limited to 'application/palemoon/base/content/browser.xul')
-rw-r--r-- | application/palemoon/base/content/browser.xul | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/application/palemoon/base/content/browser.xul b/application/palemoon/base/content/browser.xul index ea9c3f969..11c4f16f9 100644 --- a/application/palemoon/base/content/browser.xul +++ b/application/palemoon/base/content/browser.xul @@ -128,9 +128,11 @@ <!-- for search and content formfill/pw manager --> <panel type="autocomplete" id="PopupAutoComplete" noautofocus="true" hidden="true"/> + <panel type="private-autocomplete" id="PopupAutoComplete" noautofocus="true" hidden="true"/> <!-- for url bar autocomplete --> <panel type="autocomplete-richlistbox" id="PopupAutoCompleteRichResult" noautofocus="true" hidden="true"/> + <panel type="private-autocomplete-richlistbox" id="PopupAutoCompleteRichResult" noautofocus="true" hidden="true"/> <!-- for date/time picker. consumeoutsideclicks is set to never, so that clicks on the anchored input box are never consumed. --> @@ -427,7 +429,7 @@ title="&locationItem.title;" class="chromeclass-location" removable="true"> <textbox id="urlbar" flex="1" placeholder="" - type="autocomplete" + type="private-autocomplete" autocompletesearch="urlinline history" autocompletesearchparam="enable-actions" autocompletepopup="PopupAutoCompleteRichResult" |