|
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> |
|
2 <head> |
|
3 |
|
4 <bindings xmlns="http://www.mozilla.org/xbl"> |
|
5 <binding id="foo"> |
|
6 <content> |
|
7 <children xmlns="http://www.mozilla.org/xbl" /> |
|
8 </content> |
|
9 </binding> |
|
10 </bindings> |
|
11 |
|
12 <script> |
|
13 function boom() |
|
14 { |
|
15 document.getElementById("div").style.MozBinding = "url('#foo')"; |
|
16 |
|
17 var opt1 = document.getElementById("opt1"); |
|
18 opt1.removeChild(opt1.firstChild); |
|
19 |
|
20 document.getElementById("textarea").value += " "; |
|
21 |
|
22 document.documentElement.removeAttribute("class") |
|
23 } |
|
24 </script> |
|
25 |
|
26 </head> |
|
27 |
|
28 <body onload="setTimeout(boom, 30);"> |
|
29 |
|
30 <div id="div"> |
|
31 <textarea rows="3" cols="5" id="textarea"></textarea> |
|
32 </div> |
|
33 |
|
34 <select> |
|
35 <option id="opt1">opt1</option> |
|
36 </select> |
|
37 |
|
38 </body> |
|
39 </html> |
|
40 |