diff options
Diffstat (limited to 'test/c14n/with-comments/example-5.xml')
-rw-r--r-- | test/c14n/with-comments/example-5.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/c14n/with-comments/example-5.xml b/test/c14n/with-comments/example-5.xml new file mode 100644 index 0000000..92c5322 --- /dev/null +++ b/test/c14n/with-comments/example-5.xml @@ -0,0 +1,12 @@ +<!DOCTYPE doc [ +<!ATTLIST doc attrExtEnt ENTITY #IMPLIED> +<!ENTITY ent1 "Hello"> +<!ENTITY ent2 SYSTEM "world.txt"> +<!ENTITY entExt SYSTEM "earth.gif" NDATA gif> +<!NOTATION gif SYSTEM "viewgif.exe"> +]> +<doc attrExtEnt="entExt"> + &ent1;, &ent2;! +</doc> + +<!-- Let world.txt contain "world" (excluding the quotes) --> |