mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-10 08:58:16 +03:00
* pattern.c: fixed the namespaces support * tree.c: fixed xmlGetNodePath when namespaces are used * result/pattern/multiple result/pattern/namespaces test/pattern/multiple.* test/pattern/namespaces.*: added more regression tests Daniel
18 lines
225 B
XML
18 lines
225 B
XML
<a xmlns:a="http://a" xmlns:b="http://b" xmlns:c="http://a">
|
|
<b/>
|
|
<a:a>
|
|
<b:b/>
|
|
</a:a>
|
|
<b:b>
|
|
<a>
|
|
<a:a>
|
|
<b:b/>
|
|
</a:a>
|
|
</a>
|
|
</b:b>
|
|
<a xmlns="http://a">
|
|
<a xmlns=""/>
|
|
</a>
|
|
<c:a/>
|
|
</a>
|