зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1316359
- autocomplete.xml must get userContextId from the attribute of the element instead using contentPrincipal, r=Gijs
This commit is contained in:
Родитель
18b95f0ad4
Коммит
73db43e2da
|
@ -659,8 +659,10 @@
|
|||
|
||||
<handler event="focus" phase="capturing"><![CDATA[
|
||||
this.attachController();
|
||||
if (window.gBrowser) {
|
||||
this.userContextId = window.gBrowser.selectedBrowser.contentPrincipal.originAttributes.userContextId;
|
||||
if (window.gBrowser && window.gBrowser.selectedBrowser.hasAttribute("usercontextid")) {
|
||||
this.userContextId = parseInt(window.gBrowser.selectedBrowser.getAttribute("usercontextid"));
|
||||
} else {
|
||||
this.userContextId = 0;
|
||||
}
|
||||
]]></handler>
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче