|
1 <!DOCTYPE html> |
|
2 <html class="reftest-wait"> |
|
3 <head> |
|
4 <script> |
|
5 |
|
6 function doTest() |
|
7 { |
|
8 var r = document.documentElement; |
|
9 while(r.firstChild) { r.removeChild(r.firstChild); } |
|
10 var body = document.createElementNS("http://www.w3.org/1999/xhtml", "body"); |
|
11 r.appendChild(body); |
|
12 body.contentEditable = "true"; |
|
13 document.execCommand("inserthtml", false, "<span style=\"position:relative;left:0.8px\">a<select></select>a</span>"); |
|
14 |
|
15 document.documentElement.removeAttribute("class"); |
|
16 } |
|
17 |
|
18 document.addEventListener("MozReftestInvalidate", doTest, false); |
|
19 </script> |
|
20 </head> |
|
21 |
|
22 <body></body> |
|
23 </html> |