|
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 function boom() |
|
9 { |
|
10 var quote = document.getElementById("quote"); |
|
11 var para = document.getElementById("para"); |
|
12 var dialog = document.getElementById("dialog"); |
|
13 var e = document.getElementById("e"); |
|
14 |
|
15 dialog.appendChild(quote); |
|
16 e.insertBefore(quote, para); |
|
17 |
|
18 document.documentElement.removeAttribute("class"); |
|
19 } |
|
20 |
|
21 </script> |
|
22 </head> |
|
23 |
|
24 <body onload="setTimeout(boom, 30)"> |
|
25 |
|
26 <p>He said <q id="quote">J<xul:hbox/></q></p> |
|
27 |
|
28 <xul:dialog id="dialog"/> |
|
29 |
|
30 <div id="e"><p id="para">Foopy</p></div> |
|
31 |
|
32 </body> |
|
33 </html> |