|
1 <?xml version="1.0"?> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml" |
|
3 xmlns:xbl="http://www.mozilla.org/xbl" |
|
4 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
|
5 <head> |
|
6 <xbl:bindings> |
|
7 <xbl:binding id="test" extends="chrome://global/content/bindings/text.xml#text-label"> |
|
8 <xbl:implementation> |
|
9 <xbl:property name="accessKey"> |
|
10 <xbl:getter> |
|
11 <![CDATA[ |
|
12 this.parentNode.parentNode.removeChild(this.parentNode); |
|
13 return ""; |
|
14 ]]> |
|
15 </xbl:getter> |
|
16 <xbl:setter> |
|
17 <![CDATA[ |
|
18 return val; |
|
19 ]]> |
|
20 </xbl:setter> |
|
21 </xbl:property> |
|
22 </xbl:implementation> |
|
23 </xbl:binding> |
|
24 </xbl:bindings> |
|
25 </head> |
|
26 <body> |
|
27 <xul:hbox> |
|
28 <xul:label value="foobar" style="-moz-binding: url(#test)"/> |
|
29 </xul:hbox> |
|
30 </body> |
|
31 </html> |