jaxp/test/javax/xml/jaxp/unittest/dom/ElementTraversal.xml
author joehw
Fri, 25 Sep 2015 16:42:19 -0700
changeset 32791 ed81078b4e7f
permissions -rw-r--r--
8135283: DOM API update: Element Traversal Specification Reviewed-by: mchung, lancea

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE toys [
<!ENTITY toy3 "<name>Transformer X</name><price>519</price>">
]>

<toys>

    <toy id="1">	
        <name>The Martian</name>
        <price>98470</price>
    </toy>
    <toy id="2">
        <name>The Doll</name>
        <price>345</price>
    </toy>         
    <toy id="3">
        &toy3;
    </toy>    
    <toy id="4">
        <name>The Spaceship</name>
        <price>725</price>
    </toy>         
     
</toys>