зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1317697: Fix reference to undefined property warnings. r=mixedpuppy
MozReview-Commit-ID: vngYhAOgbV --HG-- extra : rebase_source : c25f29d510549ff41b21f7fcf20f1f48ae0d794a
This commit is contained in:
Родитель
fd4ac3530f
Коммит
b8f0f730da
|
@ -390,10 +390,11 @@
|
|||
<method name="getTabBrowser">
|
||||
<body>
|
||||
<![CDATA[
|
||||
var tabBrowser = this.parentNode;
|
||||
while (tabBrowser && tabBrowser.localName != "tabbrowser")
|
||||
tabBrowser = tabBrowser.parentNode;
|
||||
return tabBrowser;
|
||||
for (let node = this.parentNode; node instanceof Element; node = node.parentNode) {
|
||||
if (node.localName == "tabbrowser")
|
||||
return node;
|
||||
}
|
||||
return null;
|
||||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
|
Загрузка…
Ссылка в новой задаче