parallelization_phase: use `ANode::validate` after AST shenanigans.
[nit.git] / tests / xml_tests / ibm01v01.xml
1 <?xml version="1.0" encoding="us-ascii" standalone="yes" ?>
2 <!-- Above is XMLDecl -->
3 <!DOCTYPE animal [
4 <!ELEMENT animal (cat|tiger|leopard)+>
5 <!ELEMENT cat EMPTY>
6 <!ELEMENT tiger (#PCDATA)>
7 <!ELEMENT leopard ANY>
8 <!ELEMENT small EMPTY>
9 <!ELEMENT big EMPTY>
10 <!ATTLIST tiger color CDATA #REQUIRED>
11 ]>
12 <!-- Above is DTD -->
13 <?music "Here is a PI" ?>
14 <animal>
15 <cat/>
16 <tiger color="white">This is a white tiger in Mirage!!</tiger>
17 <cat/>
18 <leopard>
19 <small/>
20 <big/>
21 </leopard>
22 </animal>
23 <!-- Above is element animal -->