diff options
Diffstat (limited to 'htdocs/dev/tests/xhtml1-bogus-attribute.html')
-rwxr-xr-x | htdocs/dev/tests/xhtml1-bogus-attribute.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/htdocs/dev/tests/xhtml1-bogus-attribute.html b/htdocs/dev/tests/xhtml1-bogus-attribute.html new file mode 100755 index 0000000..53d9ae9 --- /dev/null +++ b/htdocs/dev/tests/xhtml1-bogus-attribute.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 attribute name</title> +</head> + +<body> + +<p> + <span badattribute="true">This phrase is enclosed in a span element with a bogus attribute.</span> +</p> + +</body> + +</html> |