public class DomUtilsIE10Impl implements DomUtilsImpl
{
public void focus(Element element, boolean alwaysDriveSelection)
{
ElementEx el = (ElementEx) element;
el.focus();
}
public native final void collapseSelection(boolean toStart) /*-{
var rng = document.selection.createRange();
rng.collapse(toStart);