opentabs.html (1389B)
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 3 - file, 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 10 http-equiv="Content-Security-Policy" 11 content="default-src resource: chrome:; object-src 'none'; img-src data: chrome:;" 12 /> 13 <meta name="color-scheme" content="light dark" /> 14 <link 15 rel="icon" 16 type="image/png" 17 id="favicon" 18 href="chrome://branding/content/icon32.png" 19 /> 20 <link rel="localization" href="browser/firefoxView.ftl" /> 21 <link rel="localization" href="browser/openTabs.ftl" /> 22 <title data-l10n-id="opentabs-page-title"></title> 23 <link 24 rel="stylesheet" 25 href="chrome://browser/content/sidebar/sidebar.css" 26 /> 27 <link 28 rel="stylesheet" 29 href="chrome://browser/content/tabbrowser/opentabs.css" 30 /> 31 <script 32 type="module" 33 src="chrome://browser/content/tabbrowser/opentabs-splitview.mjs" 34 ></script> 35 <script 36 type="module" 37 src="chrome://browser/content/sidebar/sidebar-tab-list.mjs" 38 ></script> 39 </head> 40 <body> 41 <div class="sticky-header"> 42 <h3 data-l10n-id="opentabs-page-title"></h3> 43 </div> 44 <splitview-opentabs></splitview-opentabs> 45 </body> 46 </html>