Can a Selection object be created without any user interaction? window.getSelection() does return a Selection object, but you can't modify() it unless the user has some sort of selection made.
Is it possible to create a selection which starts at the very first element on the page and then be able to modify() it, without the need for the user to do anything?
Example: http://jsfiddle.net/niklasvh/L5M3U/
It doesn't select anything on page load, but if you click on anything it does make a selection.