|
1 <html xmlns="http://www.w3.org/1999/xhtml" |
|
2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
3 class="reftest-wait"> |
|
4 |
|
5 <head> |
|
6 <script> |
|
7 |
|
8 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; |
|
9 |
|
10 function boom() |
|
11 { |
|
12 var hbox = document.getElementById("hbox"); |
|
13 var checkbox = document.createElementNS(XUL_NS, "checkbox"); |
|
14 |
|
15 hbox.appendChild(checkbox); |
|
16 |
|
17 document.documentElement.removeAttribute("class"); |
|
18 } |
|
19 |
|
20 </script> |
|
21 </head> |
|
22 |
|
23 <body onload="setTimeout(boom, 30)"> |
|
24 |
|
25 <xul:scrollbar><span><xul:hbox id="hbox"/></span></xul:scrollbar> |
|
26 |
|
27 </body> |
|
28 |
|
29 </html> |