summaryrefslogtreecommitdiffstats
path: root/htdocs/dev/tests
diff options
context:
space:
mode:
authorot <ot@localhost>2007-10-10 07:22:16 +0000
committerot <ot@localhost>2007-10-10 07:22:16 +0000
commit92d513e742f2787c738158b5196c009f0256137e (patch)
tree7f016941fa5245f5df39e12411838da09bd4af83 /htdocs/dev/tests
parent1b5b4aef25bb8b689b52605119540e069db692ff (diff)
downloadmarkup-validator-92d513e742f2787c738158b5196c009f0256137e.zip
markup-validator-92d513e742f2787c738158b5196c009f0256137e.tar.gz
markup-validator-92d513e742f2787c738158b5196c009f0256137e.tar.bz2
test bogus attribute doc
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-xhtdocs/dev/tests/index.html8
-rwxr-xr-xhtdocs/dev/tests/xhtml1-bogus-attribute.html18
2 files changed, 24 insertions, 2 deletions
diff --git a/htdocs/dev/tests/index.html b/htdocs/dev/tests/index.html
index 9da8138..1b39ed6 100755
--- a/htdocs/dev/tests/index.html
+++ b/htdocs/dev/tests/index.html
@@ -1,5 +1,5 @@
-<!--#set var="revision" value="\$Id: index.html,v 1.97 2007-10-04 06:53:14 ot Exp $"
---><!--#set var="date" value="\$Date: 2007-10-04 06:53:14 $"
+<!--#set var="revision" value="\$Id: index.html,v 1.98 2007-10-10 07:22:16 ot Exp $"
+--><!--#set var="date" value="\$Date: 2007-10-10 07:22:16 $"
--><!--#set var="title" value="The W3C Markup Validation Service: Tests"
--><!--#set var="relroot" value="../../"
--><!--#include virtual="../../header.html" -->
@@ -416,6 +416,10 @@ All these documents should validate, without "pretty print" for the document typ
<a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-bogus-element.html;ss">with v.w.o</a> -
<a href="xhtml1-bogus-element.html">view</a>:
XHTML1, bogus element (foo element not in DTD)</li>
+ <li><a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-bogus-attribute.html;ss">validate</a> -
+ <a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/xhtml1-bogus-attribute.html;ss">with v.w.o</a> -
+ <a href="xhtml1-bogus-attribute.html">view</a>:
+ XHTML1, bogus attribute</li>
<li><a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/uppercase_element.xhtml;ss">validate</a> -
<a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/uppercase_element.xhtml;ss">with v.w.o</a> -
<a href="uppercase_element.xhtml">view</a>:
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>