Skip to content
Snippets Groups Projects
Commit c77c24b6 authored by Aleksei Efimov's avatar Aleksei Efimov
Browse files

8032908: getTextContent doesn't return string in JAXP

Reviewed-by: joehw
parent 0bd7232f
Branches
No related tags found
No related merge requests found
......@@ -3145,7 +3145,11 @@ public class SAX2DTM2 extends SAX2DTM
m_data.elementAt(-dataIndex+1));
}
}
else if (DTM.ELEMENT_NODE == type || DTM.DOCUMENT_FRAGMENT_NODE == type
else if (DTM.ELEMENT_NODE == type)
{
return getStringValueX(nodeHandle);
}
else if (DTM.DOCUMENT_FRAGMENT_NODE == type
|| DTM.DOCUMENT_NODE == type)
{
return null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment