From f9cab004186edb425a9b88ad649726605080a17c Mon Sep 17 00:00:00 2001 From: Thomas Groman Date: Mon, 20 Apr 2020 20:49:37 -0700 Subject: move browser to webbrowser/ --- .../components/statusbar/content/overlay.css | 14 + webbrowser/components/statusbar/content/overlay.js | 16 + .../components/statusbar/content/overlay.xul | 82 +++ webbrowser/components/statusbar/content/prefs.css | 10 + webbrowser/components/statusbar/content/prefs.js | 274 ++++++++ webbrowser/components/statusbar/content/prefs.xml | 704 +++++++++++++++++++++ webbrowser/components/statusbar/content/prefs.xul | 297 +++++++++ .../components/statusbar/content/tabbrowser.xml | 218 +++++++ 8 files changed, 1615 insertions(+) create mode 100644 webbrowser/components/statusbar/content/overlay.css create mode 100644 webbrowser/components/statusbar/content/overlay.js create mode 100644 webbrowser/components/statusbar/content/overlay.xul create mode 100644 webbrowser/components/statusbar/content/prefs.css create mode 100644 webbrowser/components/statusbar/content/prefs.js create mode 100644 webbrowser/components/statusbar/content/prefs.xml create mode 100644 webbrowser/components/statusbar/content/prefs.xul create mode 100644 webbrowser/components/statusbar/content/tabbrowser.xml (limited to 'webbrowser/components/statusbar/content') diff --git a/webbrowser/components/statusbar/content/overlay.css b/webbrowser/components/statusbar/content/overlay.css new file mode 100644 index 0000000..fd34521 --- /dev/null +++ b/webbrowser/components/statusbar/content/overlay.css @@ -0,0 +1,14 @@ +/* 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/. */ + +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +/* + * Status Popup + */ + +statuspanel { + -moz-binding: url("chrome://browser/content/statusbar/tabbrowser.xml#statuspanel"); +} + diff --git a/webbrowser/components/statusbar/content/overlay.js b/webbrowser/components/statusbar/content/overlay.js new file mode 100644 index 0000000..b868aaf --- /dev/null +++ b/webbrowser/components/statusbar/content/overlay.js @@ -0,0 +1,16 @@ +/* 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/. */ + +if(!caligon) var caligon = {}; + +window.addEventListener("load", function buildS4E() +{ + window.removeEventListener("load", buildS4E, false); + + Components.utils.import("resource:///modules/statusbar/Status4Evar.jsm"); + + caligon.status4evar = new Status4Evar(window, gBrowser, gNavToolbox); + caligon.status4evar.setup(); +}, false); + diff --git a/webbrowser/components/statusbar/content/overlay.xul b/webbrowser/components/statusbar/content/overlay.xul new file mode 100644 index 0000000..b9934ee --- /dev/null +++ b/webbrowser/components/statusbar/content/overlay.xul @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + +