msxml3: Implement IXMLDOMNode::get_text for CDATA, processing instruction and comment nodes.

This commit is contained in:
Rob Shearman 2007-07-12 15:33:36 +01:00 committed by Alexandre Julliard
parent c6dc14d81b
commit d3a524cdba

View file

@ -553,6 +553,9 @@ static HRESULT WINAPI xmlnode_get_text(
}
case XML_TEXT_NODE:
case XML_CDATA_SECTION_NODE:
case XML_PI_NODE:
case XML_COMMENT_NODE:
str = bstr_from_xmlChar( This->node->content );
break;