validator/htdocs/dev/tests errors_sorting.smi,NONE,1.1 index.html,1.74,1.75

Update of /sources/public/validator/htdocs/dev/tests
In directory hutz:/tmp/cvs-serv9372/htdocs/dev/tests

Modified Files:
	index.html 
Added Files:
	errors_sorting.smi 
Log Message:
Since we have a number of different sources for errors (xml-wf, parsing, ...)
better make sure that they are sorted before output
(+test case) 



Index: index.html
===================================================================
RCS file: /sources/public/validator/htdocs/dev/tests/index.html,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- index.html	18 Apr 2007 02:34:41 -0000	1.74
+++ index.html	18 Apr 2007 06:32:52 -0000	1.75
@@ -359,6 +359,12 @@
       <a href="http://qa-dev.w3.org/wmvs/HEAD/dev/tests/smil20-profile-doctype.smi">view</a>:
       SMIL 2.0 with bogus xmlns and missing space between attributes
     </li>
+    <li>
+      <a href="../../check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/errors_sorting.smi">validate</a> - 
+      <a href="http://validator.w3.org/check?uri=http://qa-dev.w3.org/wmvs/HEAD/dev/tests/errors_sorting.smi">with v.w.o</a> - 
+      <a href="http://qa-dev.w3.org/wmvs/HEAD/dev/tests/errors_sorting.smi">view</a>:
+      SMIL 2.0 with bogus xmlns, xml ill-formedness and bogus elements (used to test sorting of errors)
+    </li>
   </ul>
   
   <h5>Various often-invalid site</h5>

--- NEW FILE: errors_sorting.smi ---
<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 2.0//EN"
  "http://www.w3.org/2001/SMIL20/WD/SMIL20.dtd">  

<!-- 
 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">
  <soul />
  <body>
    <img id="smile" end="activateEvent"src="../images/smile.jpg"/>
  </body>
  <soul/>
</smil> 

Received on Wednesday, 18 April 2007 06:33:05 UTC