зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1890675 - Don't return undefined from contentTitle. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D215472
This commit is contained in:
Родитель
493faa506c
Коммит
e66795cd27
|
@ -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() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче