You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TabGroupsManager.Session.prototype.tmpOverrideGetElementByIdForAboutConfig = function(tab)
{
//http://zpao.com/posts/session-restore-changes-in-firefox-15/ > '#' removed > fx 15
//Bug 947212 - Broadcast form data and move it out of tabData.entries[] > fx 29
//let state = JSON.parse(this.sessionStore.getTabState(tab));
//let textbox = state.formdata.id["textbox"];
//no reason to fix this, there is always a textbox element for about:config - not sure when this will be called
let ssData = tab.linkedBrowser.__SS_data;
let textbox = ssData.entries[ssData.index - 1].formdata["#textbox"];
tab.linkedBrowser.contentDocument.getElementById = function()
{
return {
value: textbox
}
};
};
It lies
The text was updated successfully, but these errors were encountered:
ThosRTanner
changed the title
Varios window save/restore operations don't work if you have about:config on the here be dragons page
Various window save/restore operations don't work if you have about:config on the here be dragons page
Jul 11, 2020
This function at the end of Session.js
It lies
The text was updated successfully, but these errors were encountered: