forked from mirrors/gecko-dev
		
	 9fd4c34227
			
		
	
	
		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
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| /* -*- 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;
 | |
| };
 |