diff options
Diffstat (limited to 'base/content/tabbrowser.xml')
-rw-r--r-- | base/content/tabbrowser.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/base/content/tabbrowser.xml b/base/content/tabbrowser.xml index 287e402..68c77ed 100644 --- a/base/content/tabbrowser.xml +++ b/base/content/tabbrowser.xml @@ -25,7 +25,7 @@ <xul:vbox flex="1" class="browserContainer"> <xul:stack flex="1" class="browserStack" anonid="browserStack"> <xul:browser anonid="initialBrowser" type="content-primary" message="true" messagemanagergroup="browsers" - xbl:inherits="tooltip=contenttooltip,contextmenu=contentcontextmenu,autocompletepopup,selectmenulist,datetimepicker"/> + xbl:inherits="tooltip=contenttooltip,contextmenu=contentcontextmenu,autocompletepopup,selectmenulist,datetimepicker,authdosprotected"/> </xul:stack> </xul:vbox> </xul:hbox> @@ -1916,6 +1916,10 @@ b.setAttribute("datetimepicker", this.getAttribute("datetimepicker")); } + if (this.hasAttribute("authdosprotected")) { + b.setAttribute("authdosprotected", this.getAttribute("authdosprotected")); + } + b.setAttribute("autoscrollpopup", this._autoScrollPopup.id); if (aParams.relatedBrowser) { |