Edit

kc3-lang/libxml2/test/ent10

Branch :

  • Show log

    Commit

  • Author : Daniel Veillard
    Date : 2004-10-25 16:23:56
    Hash : 370ba3d2
    Message : fixed the leak reported by Volker Roth on the list added a specific test * parser.c: fixed the leak reported by Volker Roth on the list * test/ent10 result//ent10*: added a specific test for the problem Daniel

  • test/ent10
  • <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE rnode [
    <!ELEMENT rnode (f)>
                                                                                    
    <!ELEMENT f (#PCDATA)>
    <!ATTLIST f
       att1 CDATA #FIXED 'J'>
                                                                                    
    <!ENTITY f
       "
       <f>
       hello world
       </f>
       "
    >
    ]>
                                                                                    
    <rnode>
       &f;
    </rnode>