Edit

kc3-lang/libxml2/test/ent_738805.xml

Branch :

  • Show log

    Commit

  • Author : Daniel Veillard
    Date : 2014-10-23 13:52:47
    Hash : df23f584
    Message : Adding example from bugs 738805 to regression tests For https://bugzilla.gnome.org/show_bug.cgi?id=738805 Tortuous test case provided by pierre.labastie@neuf.fr

  • test/ent_738805.xml
  • <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE  somedoc [
      <!ENTITY a   "something">
      <!ENTITY b   "&a;">
    ]>
    
    <somedoc>
    
    <somebeacon someattribute="&b;"/>
    
    &a; should appear after colon: &a;
    &b; should appear after colon: &a;
    &a; should appear after colon: &b;
    &b; should appear after colon: &b;
    
    </somedoc>