summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/viewpage.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/firefoxview/viewpage.mjs')
-rw-r--r--browser/components/firefoxview/viewpage.mjs34
1 files changed, 34 insertions, 0 deletions
diff --git a/browser/components/firefoxview/viewpage.mjs b/browser/components/firefoxview/viewpage.mjs
new file mode 100644
index 0000000000..e7b788b0ca
--- /dev/null
+++ b/browser/components/firefoxview/viewpage.mjs
@@ -0,0 +1,34 @@
+/* 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/. */
+
+import { MozLitElement } from "chrome://global/content/lit-utils.mjs";
+
+export class ViewPage extends MozLitElement {
+ static get properties() {
+ return {
+ selectedTab: { type: Boolean },
+ overview: { type: Boolean },
+ };
+ }
+
+ constructor() {
+ super();
+ this.selectedTab = false;
+ this.overview = Boolean(this.closest("VIEW-OVERVIEW"));
+ }
+
+ connectedCallback() {
+ super.connectedCallback();
+ }
+
+ disconnectedCallback() {}
+
+ enter() {
+ this.selectedTab = true;
+ }
+
+ exit() {
+ this.selectedTab = false;
+ }
+}