* @param offset the character position at which to split the Text node
* @return the Text node that was split from this node
*/
public Object jsxFunction_splitText(final int offset) {
final DomText domText = (DomText) getDomNodeOrDie();
return getScriptableFor(domText.splitText(offset));
}
}