public void testid53371() throws JaxenException {
Navigator nav = getNavigator();
String url = TESTS_ROOT + "xml/jaxen24.xml";
log("Document [" + url + "]");
Object document = nav.getDocument(url);
XPath contextpath = new BaseXPath("/body/div", nav);
log("Initial Context :: " + contextpath);
List list = contextpath.selectNodes(document);
Iterator iter = list.iterator();
while (iter.hasNext()) {
Object context = iter.next();
assertCountXPath(1, context, "preceding::*[1]");
assertValueOfXPath("span", context, "local-name(preceding::*[1])");