3 <!DOCTYPE bindings SYSTEM "chrome://mozapps/locale/xpinstall/xpinstallConfirm.dtd">
5 <bindings id="xpinstallItemBindings"
6 xmlns="http://www.mozilla.org/xbl"
7 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
8 xmlns:xbl="http://www.mozilla.org/xbl">
10 <binding id="installitem">
12 <stylesheet src="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css"/>
16 <xul:vbox align="center" pack="center" class="xpinstallIconContainer">
17 <xul:image class="xpinstallItemIcon" xbl:inherits="src=icon"/>
19 <xul:vbox flex="1" pack="center">
20 <xul:hbox class="xpinstallItemNameRow" align="center">
21 <xul:label class="xpinstallItemName" xbl:inherits="value=name" crop="right"/>
22 <xul:label class="xpinstallItemSigned" xbl:inherits="value=cert,signed"/>
24 <xul:hbox class="xpinstallItemDetailsRow" align="center">
25 <xul:textbox class="xpinstallItemURL" xbl:inherits="value=url" flex="1" readonly="true" crop="right"/>
31 <property name="name" onset="this.setAttribute('name', val); return val;"
32 onget="return this.getAttribute('name');"/>
33 <property name="cert" onset="this.setAttribute('cert', val); return val;"
34 onget="return this.getAttribute('cert');"/>
35 <property name="signed" onset="this.setAttribute('signed', val); return val;"
36 onget="return this.getAttribute('signed');"/>
37 <property name="url" onset="this.setAttribute('url', val); return val;"
38 onget="return this.getAttribute('url');"/>
39 <property name="icon" onset="this.setAttribute('icon', val); return val;"
40 onget="return this.getAttribute('icon');"/>