diff options
author | ot <ot@localhost> | 2005-05-09 00:20:34 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-05-09 00:20:34 +0000 |
commit | e1a2e624b8f89ee36a10f7440ef38ae59af9b333 (patch) | |
tree | 7af69bcd39998619a295ec1ea9b44dc02d8c933d /htdocs/dev/tests | |
parent | 22acb13fd38b8eb72a1922b73894d6a611404ef4 (diff) | |
download | markup-validator-e1a2e624b8f89ee36a10f7440ef38ae59af9b333.zip markup-validator-e1a2e624b8f89ee36a10f7440ef38ae59af9b333.tar.gz markup-validator-e1a2e624b8f89ee36a10f7440ef38ae59af9b333.tar.bz2 |
adding a couple of sample xhtml-print docs (from CR version)
Diffstat (limited to 'htdocs/dev/tests')
-rw-r--r-- | htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml | 13 | ||||
-rw-r--r-- | htdocs/dev/tests/xhtml-print_1_0.xhtml | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml b/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml new file mode 100644 index 0000000..cf0a46d --- /dev/null +++ b/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML-Print 1.0//EN" + "http://www.w3.org/MarkUp/DTD/xhtml-print10.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Invalid XHTML-Print document</title> +</head> + +<body> +<p>This document misuses the noscript element</p> +<noscript>Some text here</noscript> +</body> +</html> diff --git a/htdocs/dev/tests/xhtml-print_1_0.xhtml b/htdocs/dev/tests/xhtml-print_1_0.xhtml new file mode 100644 index 0000000..2215c58 --- /dev/null +++ b/htdocs/dev/tests/xhtml-print_1_0.xhtml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML-Print 1.0//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Sample XHTML-Print document</title> +</head> + +<body> +<p>This is a simple XHTML-Print doc.</p> +</body> +</html> |