* @param expression a string specifying an XPath expression
* @return the first node that matches the given pattern-matching operation
* If no nodes match the expression, returns a null value.
*/
public Object jsxFunction_selectSingleNode(final String expression) {
final HTMLCollection collection = jsxFunction_selectNodes(expression);
if (collection.jsxGet_length() > 0) {
return collection.get(0, collection);
}
return null;
}