diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
commit | 59203c63bb777a3bacec32fb8830fba33540e809 (patch) | |
tree | 58298e711c0ff0575818c30485b44a2f21bf28a0 /toolkit/components/satchel/nsIFormFillController.idl | |
parent | Adding upstream version 126.0.1. (diff) | |
download | firefox-59203c63bb777a3bacec32fb8830fba33540e809.tar.xz firefox-59203c63bb777a3bacec32fb8830fba33540e809.zip |
Adding upstream version 127.0.upstream/127.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/satchel/nsIFormFillController.idl')
-rw-r--r-- | toolkit/components/satchel/nsIFormFillController.idl | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/toolkit/components/satchel/nsIFormFillController.idl b/toolkit/components/satchel/nsIFormFillController.idl index 24d9bf8193..32d4e4ce89 100644 --- a/toolkit/components/satchel/nsIFormFillController.idl +++ b/toolkit/components/satchel/nsIFormFillController.idl @@ -35,33 +35,13 @@ interface nsIFormFillController : nsISupports */ readonly attribute boolean passwordPopupAutomaticallyOpened; - // Only used by tests. - void attachPopupElementToDocument(in Document document, in Element popup); - void detachFromDocument(in Document document); - - /* - * Returns true if aInput is managed by the login manager. - * - * @param aInput - The HTML <input> element to tag - */ - [can_run_script] boolean isLoginManagerField(in HTMLInputElement aInput); - - /* - * Mark the specified <input> element as being managed by password manager. - * Autocomplete requests will be handed off to the password manager, and will - * not be stored in form history. - * - * @param aInput - The HTML <input> element to tag - */ - [can_run_script] void markAsLoginManagerField(in HTMLInputElement aInput); - /* - * Mark the specified <input> element as being managed by a form autofill component. - * Autocomplete requests will be handed off to the autofill component. + * Mark the specified <input> element as being managed by autocomplete entry provider. + * Autocomplete requests will be handed off to the AutoCompleteChild. * * @param aInput - The HTML <input> element to mark */ - [can_run_script] void markAsAutofillField(in HTMLInputElement aInput); + [can_run_script] void markAsAutoCompletableField(in HTMLInputElement aInput); /* * Open the autocomplete popup, if possible. |