mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-27 14:03:36 +03:00
e4301c8bdf
* include/libxml/entities.h: fixing a comment * valid.c: fixing some troubles with validity check on namespaces * result/VC/NS3 test/VC/NS3: added a specific regression test Daniel
10 lines
273 B
XML
10 lines
273 B
XML
<?xml version="1.0" ?>
|
|
<!DOCTYPE foo [
|
|
<!ELEMENT foo EMPTY>
|
|
<!ATTLIST foo
|
|
xmlns CDATA #FIXED "http://example.com/fooo"
|
|
xmlns:foo CDATA #REQUIRED
|
|
foo:info CDATA #IMPLIED>
|
|
]>
|
|
<foo xmlns="http://example.com/foo" xmlns:foo="http://example.com/fo" foo:info="toto"/>
|