aaronleventhal%moonset.net 2ab5594717 Bug 356419. LABEL of PANEL and PANEL don't have LABEL_FOR/BY relations. Patch by Nian Liu. r=mano, aaronlev.
git-svn-id: svn://10.0.0.236/trunk@214163 18797224-902f-48f8-a5cc-f745e15eee43
2006-10-26 14:42:32 +00:00

59 lines
1.7 KiB
XML

<?xml version="1.0"?>
<bindings id="groupboxBindings"
xmlns="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:xbl="http://www.mozilla.org/xbl">
<binding id="groupbox-base">
<resources>
<stylesheet src="chrome://global/skin/groupbox.css"/>
</resources>
</binding>
<binding id="groupbox" extends="chrome://global/content/bindings/groupbox.xml#groupbox-base">
<content>
<xul:hbox class="groupbox-title" align="center" pack="start">
<children includes="caption"/>
</xul:hbox>
<xul:box flex="1" class="groupbox-body" xbl:inherits="orient,align,pack">
<children/>
</xul:box>
</content>
<implementation implements="nsIAccessibleProvider">
<property name="accessibleType" readonly="true">
<getter>
<![CDATA[
return Components.interfaces.nsIAccessibleProvider.XULGroupbox;
]]>
</getter>
</property>
</implementation>
</binding>
<binding id="caption" extends="chrome://global/content/bindings/general.xml#basetext">
<resources>
<stylesheet src="chrome://global/skin/groupbox.css"/>
</resources>
<content>
<children>
<xul:image class="caption-icon" xbl:inherits="src=image"/>
<xul:label class="caption-text" flex="1"
xbl:inherits="default,value=label,crop,accesskey"/>
</children>
</content>
<implementation>
<constructor>
if (this.parentNode.id) {
document.getAnonymousNodes(this)[1]
.setAttribute("control", this.parentNode.id);
}
</constructor>
</implementation>
</binding>
</bindings>