Bug 1803918 - Website Navigation Bar has stopped working. r=frg

This commit is contained in:
Ian Neal 2022-12-03 15:24:38 +00:00
Родитель be510b09b7
Коммит 2f9db6525a
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -56,13 +56,13 @@ LinkToolbarUI.prototype.fullSlowRefresh =
function()
{
var currentNode = getBrowser().contentDocument.documentElement;
if (!(currentNode instanceof Ci.nsIDOMHTMLHtmlElement))
if (!ChromeUtils.getClassName(currentNode) === "HTMLHtmlElement")
return;
currentNode = currentNode.firstChild;
while(currentNode)
{
if (currentNode instanceof Ci.nsIDOMHTMLHeadElement) {
if (ChromeUtils.getClassName(currentNode) === "HTMLHeadElement") {
currentNode = currentNode.firstChild;
while(currentNode)