table-ignored-child.html (317B)
1 <html> 2 <head> 3 <script> 4 window.onload = function() { 5 document.querySelector('object').appendChild(document.querySelector('#move-me')); 6 }; 7 </script> 8 </head> 9 <body dir="rtl"> 10 <object></object> 11 <table> 12 <caption style="display:none"> 13 <span> 14 <div id="move-me"></div> 15 </span> 16 </caption> 17 </table> 18 </body>