manageAddresses.xhtml (1615B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <!DOCTYPE html> 6 <html 7 xmlns="http://www.w3.org/1999/xhtml" 8 data-l10n-id="autofill-manage-dialog" 9 data-l10n-attrs="style" 10 > 11 <head> 12 <title data-l10n-id="autofill-manage-addresses-title"></title> 13 <meta 14 http-equiv="Content-Security-Policy" 15 content="default-src chrome:; style-src chrome: 'unsafe-inline';" 16 /> 17 <link rel="localization" href="browser/preferences/formAutofill.ftl" /> 18 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 19 <link 20 rel="stylesheet" 21 href="chrome://formautofill/content/manageDialog.css" 22 /> 23 <script 24 type="module" 25 src="chrome://formautofill/content/manageAddresses.mjs" 26 ></script> 27 </head> 28 <body> 29 <fieldset> 30 <legend data-l10n-id="autofill-manage-addresses-list-header" /> 31 <select id="addresses" size="9" multiple="multiple" /> 32 </fieldset> 33 <div id="controls-container"> 34 <button 35 id="remove" 36 disabled="disabled" 37 data-l10n-id="autofill-manage-remove-button" 38 /> 39 <!-- Wrapper is used to properly compute the search tooltip position --> 40 <div> 41 <button id="add" data-l10n-id="autofill-manage-add-button" /> 42 </div> 43 <button 44 id="edit" 45 disabled="disabled" 46 data-l10n-id="autofill-manage-edit-button" 47 /> 48 </div> 49 </body> 50 </html>