summaryrefslogtreecommitdiff
path: root/toolkit/content/widgets/findbar.xml
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/content/widgets/findbar.xml')
-rw-r--r--toolkit/content/widgets/findbar.xml33
1 files changed, 0 insertions, 33 deletions
diff --git a/toolkit/content/widgets/findbar.xml b/toolkit/content/widgets/findbar.xml
index c312a6a25a..aae799554d 100644
--- a/toolkit/content/widgets/findbar.xml
+++ b/toolkit/content/widgets/findbar.xml
@@ -1232,39 +1232,6 @@
]]></body>
</method>
-#ifdef XP_MACOSX
- <!--
- - Fetches the currently selected text and sets that as the text to search
- - next. This is a MacOS specific feature.
- -->
- <method name="onFindSelectionCommand">
- <body><![CDATA[
- let searchString = this.browser.finder.setSearchStringToSelection();
- if (searchString)
- this._findField.value = searchString;
- ]]></body>
- </method>
-
- <method name="_onFindFieldFocus">
- <body><![CDATA[
- let prefsvc = this._prefsvc;
- const kPref = "accessibility.typeaheadfind.prefillwithselection";
- if (this.prefillWithSelection && prefsvc.getBoolPref(kPref))
- return;
-
- let clipboardSearchString = this._browser.finder.clipboardSearchString;
- if (clipboardSearchString && this._findField.value != clipboardSearchString &&
- !this._findField._willfullyDeleted) {
- this._findField.value = clipboardSearchString;
- this._findField._hadValue = true;
- // Changing the search string makes the previous status invalid, so
- // we better clear it here.
- this._updateStatusUI();
- }
- ]]></body>
- </method>
-#endif
-
<!--
- This handles all the result changes for both
- type-ahead-find and highlighting.