Bug 1316359 - autocomplete.xml must get userContextId from the attribute of the element instead using contentPrincipal, r=Gijs

This commit is contained in:
Andrea Marchesini 2016-11-09 19:43:34 +01:00
Родитель 18b95f0ad4
Коммит 73db43e2da
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -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>