diff options
author | link <link@localhost> | 2001-07-29 09:25:27 +0000 |
---|---|---|
committer | link <link@localhost> | 2001-07-29 09:25:27 +0000 |
commit | 734d91706346cbcb889827a4eb59762383637c91 (patch) | |
tree | 47f3cca0294a86552f4dc8d97c5669447c5c78d9 /htdocs/dev/tests | |
parent | 3a41765bff0530a2ca558bb7dcbb90d6c981adda (diff) | |
download | markup-validator-734d91706346cbcb889827a4eb59762383637c91.zip markup-validator-734d91706346cbcb889827a4eb59762383637c91.tar.gz markup-validator-734d91706346cbcb889827a4eb59762383637c91.tar.bz2 |
Adding support for SMIL 2.0.
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-x | htdocs/dev/tests/index.html | 5 | ||||
-rw-r--r-- | htdocs/dev/tests/smil20-profile-doctype.smi | 24 |
2 files changed, 27 insertions, 2 deletions
diff --git a/htdocs/dev/tests/index.html b/htdocs/dev/tests/index.html index caae2f5..082be44 100755 --- a/htdocs/dev/tests/index.html +++ b/htdocs/dev/tests/index.html @@ -5,7 +5,7 @@ <title>W3C HTML Validation Service: Tests</title> <link rev="made" href="mailto:gerald@w3.org"> <meta name="revision" - content="$Id: index.html,v 1.35 2001-07-29 08:00:50 link Exp $"> + content="$Id: index.html,v 1.36 2001-07-29 09:25:27 link Exp $"> </head> <body bgcolor="#FFFFFF" text="#000000" link="#0000ee" vlink="#551a8b"> @@ -50,6 +50,7 @@ <li><a href="/check?uri=http://www.w3.org/TR/2001/PR-SVG-20010719/images/struct/StandAlone01.svg">SVG 1.0 from 20010719 PR</a> <li>@@ application/smil <li>SMIL 1.0 <a href="/check?uri=http://localhost/dev/tests/smil10-minimal.smi">Minimal Document</a> w/DOCTYPE. +<li>SMIL 2.0 <a href="/check?uri=http://localhost/dev/tests/smil20-profile-doctype.smi">Testcase (wrong Namespace?)</a> w/DOCTYPE. <li><a name="xml">more XML test cases</a>: <ul> <li><a href="/check?uri=http://impressive.net/people/gerald/2000/10/18/test-staroffice-doc.xml;ss">XML output from OpenOffice 5.2</a> ("Build/Tag number OpenOffice605"), many namespaces @@ -119,7 +120,7 @@ stress test (wrong cases)</a>, <a href='http://www.w3.org/2001/06/utf-8-wrong/'> src="http://validator.w3.org/images/vh40.gif" height=31 width=88 align=right border=0 alt="Valid W3C HTML 4.0!"></a> <a href="/feedback.html">Gerald Oskoboiny</A><br> - $Date: 2001-07-29 08:00:50 $ + $Date: 2001-07-29 09:25:27 $ </address> </body> diff --git a/htdocs/dev/tests/smil20-profile-doctype.smi b/htdocs/dev/tests/smil20-profile-doctype.smi new file mode 100644 index 0000000..f3a7ee0 --- /dev/null +++ b/htdocs/dev/tests/smil20-profile-doctype.smi @@ -0,0 +1,24 @@ +<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 2.0//EN" + "http://www.w3.org/2001/SMIL20/WD/SMIL20.dtd"> + +<!-- + Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved. + See http://www.w3.org/Consortium/Legal/. + Author: Aaron Cohen (Intel) + Version: April 24, 2001 + Module: SMIL 2.0 Language Profile + Feature: DOCTYPE and SMIL 2.0 namespace validation + File Name: smil20-profile-doctype.smil + Media Components: 1 image + Expected Behavior: The file has the SMIL 2.0 DOCTYPE declaration, + and an unrecognized default namespace attribute on the + smil element. This should result in the user agent issuing + an error. +--> + +<smil xmlns="http://www.example.org/smil/foo"> + <body> + <img id="smile" end="activateEvent"src="../images/smile.jpg"/> + </body> +</smil> + |