mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-26 06:25:03 +00:00
0b27a01673
- #522: basic window.open=noopener, refactor popup blocker M1267338 M1267339 (46bf256a1) - closes #522: rel=noopener M1222516 M1358469 M1419960 (6abcdc2cc) - closes #524: enable MSE by default (3c3b61b6f) - #399: M1342849 (47b8abd55) - more hosts for adblock (8f342c327) - #334: remove Telemetry from JS-DOM-XPConnect runtime (b95f6e968) - #525: data URL opaque origins M1324406 M1381728 (3920907ee) - #392: prerequisite SetCanonicalName M1235656 M1236638 (c1f84d628) - #392: Symbol.toStringTag M1114580 (w/o ESClassValue change; w/45ESR boilerplate) (3cf6b4057) - #525: fix assertion (until asyncOpen2 is implemented) (d9ffd4d15) - another host for adblock (ff9433ee7) - #526: M1493347 M1487098 M1423278 (4d34a54ce) - #526: update certs and pins (bcc8aabb9)
74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
/* 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/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = ["TabAttributes"];
|
|
|
|
// A set of tab attributes to persist. We will read a given list of tab
|
|
// attributes when collecting tab data and will re-set those attributes when
|
|
// the given tab data is restored to a new tab.
|
|
this.TabAttributes = Object.freeze({
|
|
persist: function (name) {
|
|
return TabAttributesInternal.persist(name);
|
|
},
|
|
|
|
get: function (tab) {
|
|
return TabAttributesInternal.get(tab);
|
|
},
|
|
|
|
set: function (tab, data = {}) {
|
|
TabAttributesInternal.set(tab, data);
|
|
}
|
|
});
|
|
|
|
var TabAttributesInternal = {
|
|
_attrs: new Set(),
|
|
|
|
// We never want to directly read or write those attributes.
|
|
// 'image' should not be accessed directly but handled by using the
|
|
// gBrowser.getIcon()/setIcon() methods.
|
|
// 'muted' should not be accessed directly but handled by using the
|
|
// tab.linkedBrowser.audioMuted/toggleMuteAudio methods.
|
|
// 'pending' is used internal by sessionstore and managed accordingly.
|
|
// 'skipbackgroundnotify' is used to speed up startup time (bug 1342849).
|
|
_skipAttrs: new Set(["image", "muted", "pending", "skipbackgroundnotify"]),
|
|
|
|
persist: function (name) {
|
|
if (this._attrs.has(name) || this._skipAttrs.has(name)) {
|
|
return false;
|
|
}
|
|
|
|
this._attrs.add(name);
|
|
return true;
|
|
},
|
|
|
|
get: function (tab) {
|
|
let data = {};
|
|
|
|
for (let name of this._attrs) {
|
|
if (tab.hasAttribute(name)) {
|
|
data[name] = tab.getAttribute(name);
|
|
}
|
|
}
|
|
|
|
return data;
|
|
},
|
|
|
|
set: function (tab, data = {}) {
|
|
// Clear attributes.
|
|
for (let name of this._attrs) {
|
|
tab.removeAttribute(name);
|
|
}
|
|
|
|
// Set attributes.
|
|
for (let name in data) {
|
|
if (!this._skipAttrs.has(name)) {
|
|
tab.setAttribute(name, data[name]);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|