Bug 1803918 - Website Navigation Bar has stopped working. r=frg
This commit is contained in:
Родитель
be510b09b7
Коммит
2f9db6525a
|
@ -56,13 +56,13 @@ LinkToolbarUI.prototype.fullSlowRefresh =
|
||||||
function()
|
function()
|
||||||
{
|
{
|
||||||
var currentNode = getBrowser().contentDocument.documentElement;
|
var currentNode = getBrowser().contentDocument.documentElement;
|
||||||
if (!(currentNode instanceof Ci.nsIDOMHTMLHtmlElement))
|
if (!ChromeUtils.getClassName(currentNode) === "HTMLHtmlElement")
|
||||||
return;
|
return;
|
||||||
currentNode = currentNode.firstChild;
|
currentNode = currentNode.firstChild;
|
||||||
|
|
||||||
while(currentNode)
|
while(currentNode)
|
||||||
{
|
{
|
||||||
if (currentNode instanceof Ci.nsIDOMHTMLHeadElement) {
|
if (ChromeUtils.getClassName(currentNode) === "HTMLHeadElement") {
|
||||||
currentNode = currentNode.firstChild;
|
currentNode = currentNode.firstChild;
|
||||||
|
|
||||||
while(currentNode)
|
while(currentNode)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче