Files
tubestation/browser/components/firefoxview/firefoxview-next.html
Kelly Cochrane f5b163db5c Bug 1833218 - Create card container component to be used in Firefox View r=sclements
Creating new revision as a workaround for bug 1834868. The original revision was already R+ed here: https://phabricator.services.mozilla.com/D178473

Differential Revision: https://phabricator.services.mozilla.com/D179073
2023-05-25 13:14:18 +00:00

60 lines
2.0 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>
<head>
<meta charset="utf-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src resource: chrome:; object-src 'none'; img-src data: chrome:;"
/>
<meta name="color-scheme" content="light dark" />
<title data-l10n-id="firefoxview-page-title"></title>
<link rel="localization" href="browser/firefoxView.ftl" />
<link rel="localization" href="toolkit/branding/brandings.ftl" />
<link
rel="stylesheet"
href="chrome://browser/content/firefoxview/firefoxview-next.css"
/>
<script
type="module"
src="chrome://browser/content/firefoxview/overview.mjs"
></script>
<script
type="module"
src="chrome://browser/content/firefoxview/history.mjs"
></script>
<script
type="module"
src="chrome://browser/content/firefoxview/opentabs.mjs"
></script>
<script src="chrome://browser/content/contentTheme.js"></script>
</head>
<body>
<div id="navigation">
<ul>
<li data-l10n-id="firefoxview-overview-navigation" page="overview"></li>
<li data-l10n-id="firefoxview-history-navigation" page="history"></li>
<li data-l10n-id="firefoxview-opentabs-navigation" page="opentabs"></li>
</ul>
</div>
<named-deck id="pages">
<view-overview name="overview">
<div>
<view-history slot="history"></view-history>
</div>
<h2 data-l10n-id="firefoxview-opentabs-header"></h2>
<div>
<view-opentabs slot="opentabs"></view-opentabs>
</div>
</view-overview>
<view-history name="history"></view-history>
<view-opentabs name="opentabs"></view-opentabs>
</named-deck>
<script src="chrome://browser/content/firefoxview/firefoxview-next.mjs"></script>
</body>
</html>