firstrun.html (1577B)
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 5 <!doctype html> 6 <html> 7 <head> 8 <meta charset="utf-8" /> 9 <meta name="color-scheme" content="light dark" /> 10 <meta 11 http-equiv="Content-Security-Policy" 12 content="default-src 'none'; object-src 'none'; script-src resource: chrome:; img-src chrome:; style-src resource: chrome:;" 13 /> 14 <title data-l10n-id="aiwindow-firstrun-title"></title> 15 <link 16 rel="icon" 17 type="image/png" 18 href="chrome://branding/content/icon32.png" 19 /> 20 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 21 <link 22 rel="stylesheet" 23 href="chrome://browser/content/aboutwelcome/aboutwelcome.css" 24 /> 25 <link 26 rel="stylesheet" 27 href="chrome://browser/content/aiwindow/ai-window-content.css" 28 /> 29 <link 30 rel="stylesheet" 31 href="chrome://browser/content/aiwindow/firstrun.css" 32 /> 33 <link rel="localization" href="preview/aiWindow.ftl" /> 34 </head> 35 <body> 36 <div 37 id="multi-stage-message-root" 38 class="welcome-container" 39 role="presentation" 40 ></div> 41 <script src="chrome://global/content/vendor/react.js"></script> 42 <script src="chrome://global/content/vendor/react-dom.js"></script> 43 <script src="chrome://browser/content/contentTheme.js"></script> 44 <script src="chrome://browser/content/aiwindow/firstrun.js"></script> 45 </body> 46 </html>