summaryrefslogtreecommitdiff
path: root/ext/dom/tests/wrong_book_with_dtd2.xml
blob: 6c49deb1f5697370780d761d7695eecd1491a241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE books [
<!ENTITY entitest "entity is only for test purposes">
<!ATTLIST title default CDATA "default title">
<!ELEMENT books (book)*>
<!ELEMENT book (title , author)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
]>
<books>
    <book>
    <title>The Grapes of Wrath</title>
    <author>John Steinbeck</author>
    <author>John Steinbeck</author>
    </book>
    <book>
    <title>The Pearl</title>
    <author>John Steinbeck</author>
    </book>
</books>