mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-07 21:43:24 +00:00
9fd4c34227
This allows us to centralize the logic about which field names are "sensitive" and shouldn't be saved in things like form history or session history. Differential Revision: https://phabricator.services.mozilla.com/D16128 --HG-- extra : moz-landing-system : lando
19 lines
588 B
Plaintext
19 lines
588 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/**
|
|
* This dictionary is used for the input, textarea and select element's
|
|
* getAutocompleteInfo method.
|
|
*/
|
|
|
|
dictionary AutocompleteInfo {
|
|
DOMString section = "";
|
|
DOMString addressType = "";
|
|
DOMString contactType = "";
|
|
DOMString fieldName = "";
|
|
boolean canAutomaticallyPersist = true;
|
|
};
|