| <!-- | |
| @WIN-ALLOW:ia2_hypertext=* | |
| @AURALINUX-ALLOW:character_count* | |
| @WAIT-FOR:done | |
| --> | |
| <!-- This test makes sure the number of embedded object characters is correct --> | |
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <div></div> <!-- Not in platform tree, but the moved-in contents will be --> | |
| <div><div id="move-me" tabindex="0"></div></div> | |
| <script> | |
| function go() { | |
| document.querySelector('div').appendChild(document.getElementById("move-me")); | |
| document.title = 'done'; | |
| } | |
| setTimeout(go, 50); | |
| </script> | |
| </body> | |
| </html> |