diff options
author | ot <ot@localhost> | 2007-10-05 07:40:01 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-10-05 07:40:01 +0000 |
commit | 108fdfd388289320876e906105b13abce73ee07a (patch) | |
tree | 57242c1ef03d0a6e88d20b15798ec9ac8a3b1ff0 /htdocs/dev | |
parent | 2efdd87b91bac9f9b09ebf51de417923935e39b6 (diff) | |
download | markup-validator-108fdfd388289320876e906105b13abce73ee07a.zip markup-validator-108fdfd388289320876e906105b13abce73ee07a.tar.gz markup-validator-108fdfd388289320876e906105b13abce73ee07a.tar.bz2 |
adding second shorthand markup test case
Diffstat (limited to 'htdocs/dev')
-rw-r--r-- | htdocs/dev/tests/shorttags2.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/htdocs/dev/tests/shorttags2.html b/htdocs/dev/tests/shorttags2.html new file mode 100644 index 0000000..3a3ff83 --- /dev/null +++ b/htdocs/dev/tests/shorttags2.html @@ -0,0 +1,18 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> + <html> + <head> + <title>Shorttags test 2</title> + <meta http-equiv="content-type" content="text/html;charset=utf-8"> + <meta http-equiv="Content-Style-Type" content="text/css"> + </head> + <body> + <div> + + <p<a href="/">this text should be in a link</> while this text should not + </p<p>All this markup is valid <a href="http://www.w3.org/TR/html401/appendix/notes.html#h-B.3.7">HTML 4.01</a>, but really not recommended.</P> + + </div> + </body> + </html> + |