summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xhtdocs/dev/tests/index.html5
-rw-r--r--htdocs/dev/tests/sgml_customdtd.html24
2 files changed, 27 insertions, 2 deletions
diff --git a/htdocs/dev/tests/index.html b/htdocs/dev/tests/index.html
index ddf026f..d7228dd 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.48 2005-02-04 13:37:36 link Exp $"
---><!--#set var="date" value="\$Date: 2005-02-04 13:37:36 $"
+<!--#set var="revision" value="\$Id: index.html,v 1.49 2005-04-27 09:13:44 ot Exp $"
+--><!--#set var="date" value="\$Date: 2005-04-27 09:13:44 $"
--><!--#set var="title" value="The W3C Markup Validation Service: Tests"
--><!--#set var="relroot" value="../../"
--><!--#include virtual="../../header.html" -->
@@ -33,6 +33,7 @@
<li>SMIL 1.0 <a href="../../check?uri=http://validator.w3.org/dev/tests/smil10-minimal.smi">Minimal Document</a> w/DOCTYPE.</li>
<li>SMIL 2.0 <a href="../../check?uri=http://validator.w3.org/dev/tests/smil20-profile-doctype.smi">Testcase (wrong Namespace?)</a> w/DOCTYPE.</li>
<li><a href="../../check?uri=http://www.w3.org/TR/XHTMLplusMathMLplusSVG/sample.xhtml">Sample XHTML + MathML + SVG document</a> (from the 9 August 2002 WD)</li>
+ <li>One document using a <a href="../../check?uri=http://validator.w3.org:8001/dev/tests/sgml_customdtd.html">"Custom" SGML DTD</a> (HTML4.0 plus blink)</li>
</ul>
</div>
diff --git a/htdocs/dev/tests/sgml_customdtd.html b/htdocs/dev/tests/sgml_customdtd.html
new file mode 100644
index 0000000..4a5fd9b
--- /dev/null
+++ b/htdocs/dev/tests/sgml_customdtd.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html SYSTEM "http://www.w3.org/Style/HTML40-plus-blink.dtd">
+<!--
+ The above is a "custom" DTD, because the text below uses
+ <blink>, which isn't actually an HTML element. Including
+ <blink> is meant as a *joke*. Adding it to a DTD doesn't make
+ it any more standard or any more meaningful. DON'T CREATE
+ CUSTOM DTDs!
+-->
+<html>
+<head>
+<title>Document using Custom DTD</title>
+</head>
+
+<body lang="en">
+
+<p>This document is a subset of the <a href="http://www.w3.org/Style/">W3C Style</a>
+homepage, using <a href="http://www.w3.org/Style/customdtd">Custom DTD</a>
+allowing <blink>The nonstandard blink element</blink>.
+</p>
+
+<p>It is valid against that particular DTD</p>
+
+</body>
+</html>