view test/javax/xml/jaxp/unittest/transform/Bug6206491_2.xml @ 779:2b61bfcaa586

8132660: Change jaxp unit test package name to be different with jaxp api Reviewed-by: joehw Contributed-by: frank.yuan@oracle.com
author joehw
date Mon, 10 Aug 2015 09:52:32 -0700
parents test/javax/xml/jaxp/unittest/javax/xml/transform/Bug6206491_2.xml@29ba77ad2a87
children
line wrap: on
line source

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE organization2 [
    <!ELEMENT organization2 (company*,ids)>
    <!ELEMENT company (#PCDATA | department)*>
    <!ELEMENT ids (id*)>
    <!ELEMENT id EMPTY>
    <!ELEMENT department EMPTY>
    
    <!ATTLIST organization  id              ID  #IMPLIED
    >
    <!ATTLIST company   id                  ID  #REQUIRED
                        count               CDATA  #REQUIRED
    >
    <!ATTLIST department    id              ID  #REQUIRED
    >
    <!ATTLIST id
        value       IDREF   #REQUIRED
    >
]>
<organization2>
    <company id="xca" count="2">
        <department id="xda"/>
    </company>
    <company id="xcb" count="0"/>
    <company id="xcc" count="5"/>
    <ids>
        <id value="xca"/>
        <id value="xcb"/>
    </ids>
</organization2>