41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src chrome: resource:;"
|
|
/>
|
|
<script
|
|
type="module"
|
|
src="chrome://global/content/megalist/MegalistAlpha.mjs"
|
|
></script>
|
|
<link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="chrome://global/content/megalist/megalist.css"
|
|
/>
|
|
<!-- We should be using sidebar.css but input fields are regressed if we
|
|
swap out common.css for it. -->
|
|
<!-- <link
|
|
rel="stylesheet"
|
|
href="chrome://browser/skin/places/sidebar.css"
|
|
/> -->
|
|
<link rel="localization" href="branding/brand.ftl" />
|
|
<link rel="localization" href="browser/contextual-manager.ftl" />
|
|
<link rel="localization" href="browser/aboutLogins.ftl" />
|
|
<link rel="localization" href="browser/sidebar.ftl" />
|
|
</head>
|
|
|
|
<body>
|
|
<megalist-alpha></megalist-alpha>
|
|
</body>
|
|
</html>
|