diff options
author | Glenn Morris <rgm@gnu.org> | 2008-02-16 22:44:58 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-02-16 22:44:58 +0000 |
commit | 1f7bdd6fc6a6175eeba8f5a2d639e61f71cab481 (patch) | |
tree | 1c0472f0301e4d40ca364a370f59e607b6dd8b3b /etc/nxml | |
parent | 6943aa0200c6dd5bb4b11805bf370da66a8aafbe (diff) | |
download | emacs-1f7bdd6fc6a6175eeba8f5a2d639e61f71cab481.tar.gz |
Move here from lisp/nxml. Rename from "test." to "test-" for doschk.
Diffstat (limited to 'etc/nxml')
-rw-r--r-- | etc/nxml/test-invalid.xml | 11 | ||||
-rw-r--r-- | etc/nxml/test-valid.xml | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/etc/nxml/test-invalid.xml b/etc/nxml/test-invalid.xml new file mode 100644 index 00000000000..87a0031f8e7 --- /dev/null +++ b/etc/nxml/test-invalid.xml @@ -0,0 +1,11 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>An invalid document</title> + </head> + <body> + <p>This XHTML document is <span class="#foo">invalid</span>.</p> + </body> +</html> + +<!-- arch-tag: 8127c8be-d617-46f5-bdf2-c9159a417c38 + (do not change this comment) --> diff --git a/etc/nxml/test-valid.xml b/etc/nxml/test-valid.xml new file mode 100644 index 00000000000..c11380a0e41 --- /dev/null +++ b/etc/nxml/test-valid.xml @@ -0,0 +1,11 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>A valid document</title> + </head> + <body> + <p>This is a valid, albeit boring, XHTML document.</p> + </body> +</html> + +<!-- arch-tag: 6f7701be-ec51-48d0-bb63-38ed564718d6 + (do not change this comment) --> |