diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2000-07-14 14:54:24 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2000-07-14 14:54:24 +0000 |
| commit | 71f93fca5a397ec56d1824cbf3ace8f4db86fb56 (patch) | |
| tree | 13456e5977c2e6b2897560d9a97d01d39d70db2c /test/VC | |
| parent | 32bc74ef98c7bd6172327fb03f68766f6ee4b6a2 (diff) | |
| download | platform_external_libxml2-71f93fca5a397ec56d1824cbf3ace8f4db86fb56.tar.gz platform_external_libxml2-71f93fca5a397ec56d1824cbf3ace8f4db86fb56.tar.bz2 platform_external_libxml2-71f93fca5a397ec56d1824cbf3ace8f4db86fb56.zip | |
Added a bunch of testsuite realted files missing, Daniel.
Diffstat (limited to 'test/VC')
| -rw-r--r-- | test/VC/NS1 | 13 | ||||
| -rw-r--r-- | test/VC/NS2 | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/test/VC/NS1 b/test/VC/NS1 new file mode 100644 index 00000000..2f744632 --- /dev/null +++ b/test/VC/NS1 @@ -0,0 +1,13 @@ +<!DOCTYPE ns:doc [ +<!ELEMENT ns:doc (#PCDATA | ns:a | ns:b)*> +<!ATTLIST ns:doc + ns:attr CDATA #REQUIRED + xmlns:ns CDATA #IMPLIED> +<!ELEMENT ns:a EMPTY> +<!ELEMENT ns:b (#PCDATA)> +]> +<ns:doc ns:attr="val" xmlns:ns="http://www.example.org/test/"> + <ns:a/> + <ns:b>first line</ns:b> + <ns:b>second line</ns:b> +</ns:doc> diff --git a/test/VC/NS2 b/test/VC/NS2 new file mode 100644 index 00000000..d748d1a4 --- /dev/null +++ b/test/VC/NS2 @@ -0,0 +1,13 @@ +<!DOCTYPE doc [ +<!ELEMENT doc (#PCDATA | ns:a | ns:b)*> +<!ATTLIST doc + attr CDATA #REQUIRED + xmlns:ns CDATA #IMPLIED> +<!ELEMENT a EMPTY> +<!ELEMENT b (#PCDATA)> +]> +<ns:doc ns:attr="val" xmlns:ns="http://www.example.org/test/"> + <ns:a/> + <ns:b>first line</ns:b> + <ns:b>second line</ns:b> +</ns:doc> |
