Commit d3a524cd authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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

parent c6dc14d8
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment