1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2026-01-26 21:41:34 +03:00
Files
libxml2/test/XInclude/without-reader/ns1.xml
Nick Wellnhofer c99cde3f21 xinclude: Also test error messages
The reader interface with XIncludes is somewhat broken and can generate
different error messages. Start to move tests which are sketchy with
reader to a separate directory.
2022-10-23 14:26:59 +02:00

13 lines
313 B
XML

<?xml version="1.0"?>
<doc xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="#a"/>
<elem xmlns:ns="urn:foo">
<ns:elem xml:id="a"/>
</elem>
<xi:include href="b.xml">
<xi:fallback xmlns:ns="urn:bar">
<ns:elem/>
</xi:fallback>
</xi:include>
</doc>