bug1132768-1-ref.html (242B)
1 <!DOCTYPE html> 2 <html> 3 <script> 4 function test() { 5 focus(); 6 getSelection().selectAllChildren(document.querySelector("span")); 7 } 8 </script> 9 <body onload="test()"> 10 <div>foo<span>bar</span>baz</div> 11 </body> 12 </html>