I don't know whether any errors would be recorded when Firefox tries and fails to generate the list. While viewing that window, you could open the Browser Console popup window (Ctrl+Shift+J), then click the List All Tabs button in the main window and see whether any error messages appear in the Browser Console in response.
Firefox
The latest news and developments on Firefox and Mozilla, a global non-profit that strives to promote openness, innovation and opportunity on the web.
You can subscribe to this community from any Kbin or Lemmy instance:
Related
- Firefox Customs: [email protected]
- Thunderbird: [email protected]
Rules
While we are not an official Mozilla community, we have adopted the Mozilla Community Participation Guidelines as far as it can be applied to a bin.
Rules
-
Always be civil and respectful
Don't be toxic, hostile, or a troll, especially towards Mozilla employees. This includes gratuitous use of profanity. -
Don't be a bigot
No form of bigotry will be tolerated. -
Don't post security compromising suggestions
If you do, include an obvious and clear warning. -
Don't post conspiracy theories
Especially ones about nefarious intentions or funding. If you're concerned: Ask. Please don’t fuel conspiracy thinking here. Don’t try to spread FUD, especially against reliable privacy-enhancing software. Extraordinary claims require extraordinary evidence. Show credible sources. -
Don't accuse others of shilling
Send honest concerns to the moderators and/or admins, and we will investigate. -
Do not remove your help posts after they receive replies
Half the point of asking questions in a public sub is so that everyone can benefit from the answers—which is impossible if you go deleting everything behind yourself once you've gotten yours.
Although i managed to fix the problem, I went back to test it and indeed it gave an error:
TypeError: lazy.ContextualIdentityService.getPublicIdentityFromId(...) is undefined3 TabsList.sys.mjs:323:40
_createRow resource:///modules/TabsList.sys.mjs:323
_populate resource:///modules/TabsList.sys.mjs:110
_populate resource:///modules/TabsList.sys.mjs:275
handleEvent resource:///modules/TabsList.sys.mjs:254
dispatchCustomEvent resource:///modules/PanelMultiView.sys.mjs:189
dispatchCustomEvent resource:///modules/PanelMultiView.sys.mjs:1484
_blockersPromise resource:///modules/PanelMultiView.sys.mjs:223
The fix is in the edit above.
I wasn't able to replicate the error by adding one or two m or n dashes to the document title. Based on this error message and the screenshot, and comparing how Firefox displays other tab titles when Multi-Account Containers is installed, I wonder if the problem tab was open in a container that had been deleted or had become corrupted in some manner so Firefox had retained the assigned container ID, but that container ID no longer matched any container. Opening the URL in a new tab most likely used a different container, working around the problem.
Another option would be to run a little snippet of script in the Web Console (Ctrl+Shift+K, or on Mac, it's Command+Alt+K) to chop off the last character of the title:
document.title = document.title.slice(0, document.title.length-1);
If there is still something strange on there, press the up arrow and submit it again (or if there's a Run button, click Run again).