fix: Fixed chrome.xhtml not rendering on tabs, b=closes #9989, c=common

This commit is contained in:
Mr. M
2025-08-25 10:09:46 +02:00
parent bfbf5cce61
commit 5feef90401

View File

@@ -531,8 +531,8 @@ var gZenVerticalTabsManager = {
ChromeUtils.defineLazyGetter(this, 'hidesTabsToolbar', () => {
return (
document.documentElement.getAttribute('chromehidden').includes('toolbar') ||
document.documentElement.getAttribute('chromehidden').includes('menubar')
document.documentElement.getAttribute('chromehidden')?.includes('toolbar') ||
document.documentElement.getAttribute('chromehidden')?.includes('menubar')
);
});