1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/test/valid/t8a.xml
Daniel Veillard f5582f156c applied a couple of patches from Peter Jacobi to start to get rid of
* parser.c: applied a couple of patches from Peter Jacobi to start
  to get rid of ctxt->token, with a possible significant speed
  improvement to be gained once done. Better compliance with PE
  references constructs in DTDs too.
* test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests
  from Peter too
Daniel
2002-06-11 10:08:16 +00:00

9 lines
289 B
XML

<?xml version='1.0'?>
<!DOCTYPE root [
<!ENTITY % deftest '&lt;!ELEMENT test (#PCDATA) >' >
<!ENTITY % defmiddle '&lt;!ELEMENT middle (test) >' >
<!ENTITY % defroot '&lt;!ELEMENT root (middle) >' >
%defroot;%defmiddle;%deftest;
]>
<root><middle><test>sample</test></middle></root>