12 lines
253 B
XML
12 lines
253 B
XML
|
<?xml version="1.0"?>
|
||
|
<!-- Test non-deterministic content model matching.
|
||
|
|
||
|
Entity references are not part of the internal DTD subset (for good reason).
|
||
|
|
||
|
-->
|
||
|
<!DOCTYPE root [
|
||
|
<!ELEMENT e0 EMPTY>
|
||
|
<!ENTITY % e1 "(e0,e0)">
|
||
|
<!ELEMENT root (%e1;)?>
|
||
|
]>
|
||
|
<root/>
|