Commit c4ac69b7 authored by Zhangrong Huang's avatar Zhangrong Huang Committed by Alexandre Julliard

msxml3: Add support for accessing CDATASection node.

parent 89f1bfab
......@@ -1446,6 +1446,9 @@ IXMLDOMNode *create_node( xmlNodePtr node )
case XML_TEXT_NODE:
pUnk = create_text( node );
break;
case XML_CDATA_SECTION_NODE:
pUnk = create_cdata( node );
break;
case XML_COMMENT_NODE:
pUnk = create_comment( node );
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