mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-05 16:58:17 +03:00
* xinclude.c: oops I was missing the xml:base fixup too * result/XInclude/*.xml: this adds xml:base attributes to most results of the tests Daniel
20 lines
367 B
XML
20 lines
367 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE book [
|
|
<!ELEMENT book (doc)*>
|
|
<!ELEMENT doc (isid)*>
|
|
<!ELEMENT isid EMPTY>
|
|
<!ATTLIST isid myid ID #IMPLIED>
|
|
]>
|
|
<book>
|
|
<doc>
|
|
<isid myid="mine"/>
|
|
<isid myid="dup"/>
|
|
</doc>
|
|
<!-- including another XML document with IDs -->
|
|
<doc xml:base="test/XInclude/ents/ids.xml">
|
|
<isid myid="dup"/>
|
|
<isid myid="foo"/>
|
|
<isid myid="bar"/>
|
|
</doc>
|
|
</book>
|