* @return the HTML fragment contained within the range
*/
public String jsxGet_htmlText() {
final org.w3c.dom.Node node = range_.getCommonAncestorContainer();
final HTMLElement element = (HTMLElement) getScriptableFor(node);
return element.jsxGet_outerHTML(); // TODO: not quite right, but good enough for now
}
/**
* Duplicates this TextRange instance.
* @see <a href="http://msdn.microsoft.com/en-us/library/ms536416.aspx">MSDN documentation</a>