delete-profile.html (1290B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 - You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <!doctype html> 5 <html xmlns="http://www.w3.org/1999/xhtml" role="document"> 6 <head> 7 <meta charset="utf-8" /> 8 <meta 9 http-equiv="Content-Security-Policy" 10 content="default-src resource: chrome:; object-src 'none'; img-src blob: chrome:;" 11 /> 12 13 <link id="favicon" rel="icon" type="image/svg+xml" /> 14 15 <title 16 data-l10n-id="delete-profile-page-title" 17 data-l10n-args='{"profilename": ""}' 18 ></title> 19 20 <link rel="localization" href="branding/brand.ftl" /> 21 <link rel="localization" href="browser/profiles.ftl" /> 22 23 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 24 <link 25 rel="stylesheet" 26 href="chrome://browser/content/profiles/delete-profile-card.css" 27 /> 28 29 <script 30 type="module" 31 src="chrome://browser/content/profiles/delete-profile-card.mjs" 32 ></script> 33 34 <script src="chrome://browser/content/contentTheme.js"></script> 35 </head> 36 37 <body> 38 <delete-profile-card 39 aria-labelledby="delete-profile-page-title" 40 ></delete-profile-card> 41 </body> 42 </html>