migration-dialog-window.html (1320B)
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> 6 <head> 7 <meta charset="utf-8" /> 8 <meta name="color-scheme" content="light dark" /> 9 <meta 10 http-equiv="Content-Security-Policy" 11 content="default-src 'none'; object-src 'none'; script-src chrome:; media-src chrome:; img-src chrome:; style-src chrome:;" 12 /> 13 <link 14 rel="icon" 15 type="image/png" 16 href="chrome://branding/content/icon32.png" 17 /> 18 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 19 <link 20 rel="stylesheet" 21 href="chrome://browser/skin/migration/migration-dialog-window.css" 22 /> 23 <script src="chrome://global/content/customElements.js"></script> 24 <script 25 src="chrome://browser/content/migration/migration-wizard-constants.mjs" 26 type="module" 27 ></script> 28 <script 29 src="chrome://browser/content/migration/migration-wizard.mjs" 30 type="module" 31 ></script> 32 <script src="chrome://browser/content/migration/migration-dialog-window.js"></script> 33 </head> 34 <body> 35 <migration-wizard id="wizard" dialog-mode></migration-wizard> 36 </body> 37 </html>