Bug 1890675 - Don't return undefined from contentTitle. r=dao

Differential Revision: https://phabricator.services.mozilla.com/D215472
This commit is contained in:
Andreas Farre 2024-07-04 14:42:41 +00:00
Родитель 493faa506c
Коммит e66795cd27
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -557,9 +557,11 @@
}
get contentTitle() {
return this.isRemoteBrowser
? this.browsingContext?.currentWindowGlobal?.documentTitle
: this.contentDocument.title;
return (
(this.isRemoteBrowser
? this.browsingContext?.currentWindowGlobal?.documentTitle
: this.contentDocument.title) ?? ""
);
}
forceEncodingDetection() {