diff options
author | gerald <gerald@localhost> | 2000-06-29 18:01:46 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 2000-06-29 18:01:46 +0000 |
commit | 9e9531b09684c639592b8a044dfcdf16cfbe3457 (patch) | |
tree | cc64e4b69d6042c874c9fca80eb2c0e8603c09ba /htdocs/dev/tests | |
parent | 7056daa3bff47d07d5f5938a705b052590d8de7c (diff) | |
download | markup-validator-9e9531b09684c639592b8a044dfcdf16cfbe3457.zip markup-validator-9e9531b09684c639592b8a044dfcdf16cfbe3457.tar.gz markup-validator-9e9531b09684c639592b8a044dfcdf16cfbe3457.tar.bz2 |
test XHTML document with a bogus element
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-x | htdocs/dev/tests/xhtml1-bogus-element.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/htdocs/dev/tests/xhtml1-bogus-element.html b/htdocs/dev/tests/xhtml1-bogus-element.html new file mode 100755 index 0000000..c82f437 --- /dev/null +++ b/htdocs/dev/tests/xhtml1-bogus-element.html @@ -0,0 +1,18 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> + +<head> + <title>test XHTML document with a bogus element</title> +</head> + +<body> + +<p> + <foo>This phrase is enclosed in a bogus FOO element.</foo> +</p> + +</body> + +</html> |