|
1 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
2 <head> |
|
3 <bindings xmlns="http://www.mozilla.org/xbl"> |
|
4 <binding id="x"><content><span>a |
|
5 b<children xmlns="http://www.mozilla.org/xbl"/></span></content></binding> |
|
6 </bindings> |
|
7 <style> |
|
8 div#d { |
|
9 white-space: pre; |
|
10 -moz-binding: url(#x); |
|
11 } |
|
12 span#s { |
|
13 display: inline-block; |
|
14 } |
|
15 </style> |
|
16 <script> |
|
17 function boom() |
|
18 { |
|
19 document.getElementById("s").style.display = "inline"; |
|
20 } |
|
21 </script> |
|
22 </head> |
|
23 <body onload="boom();"> |
|
24 <div id="d"><span id="s">s</span></div> |
|
25 </body> |
|
26 </html> |