Parent Directory
|
Revision Log
++ ChangeLog 11 Aug 2007 13:54:20 -0000 2007-08-11 Wakaba <wakaba@suika.fam.cx> * cc.cgi, parser-manakai.cgi, parser.cgi: Use |Message::CGI::HTTP| instead of |SuikaWiki::Input::HTTP|. 2007-08-05 Wakaba <wakaba@suika.fam.cx> * cc-interface.en.html: IMT |application/atom+xml| is added. Link to |cc-todo| is added. 2007-07-24 Wakaba <wakaba@suika.fam.cx> * error-description.xml: Description for "after body", "bare etago", and "bogus end tag" are added.
| 1 | wakaba | 1.1 | <!DOCTYPE html><html id="error-description" lang="en" xmlns:d="http://suika.fam.cx/~wakaba/archive/2007/wdcc-desc/" xmlns="http://www.w3.org/1999/xhtml"> |
| 2 | <head> | ||
| 3 | <title xml:lang="en">Description of Errors — | ||
| 4 | Web Document Conformance Checker (BETA)</title> | ||
| 5 | <link href="cc-style" rel="stylesheet"> | ||
| 6 | <link href="#license" rel="license"> | ||
| 7 | </head> | ||
| 8 | <body> | ||
| 9 | <h1>Description of Errors</h1> | ||
| 10 | |||
| 11 | wakaba | 1.2 | <section id="html5-tokenize-error"> |
| 12 | <h2>HTML5 Parse Errors in Tokenization Stage</h2> | ||
| 13 | wakaba | 1.1 | |
| 14 | wakaba | 1.3 | <div class="section parse-error" id="after-html"><h3>Tag <code><<var>$0</var>></code> |
| 15 | is not allowed after the end tag <code></html></code>.</h3> | ||
| 16 | <p>The start or end tag of an element appears after the | ||
| 17 | <code>html</code> element has been closed. The document is | ||
| 18 | non-conforming.</p> | ||
| 19 | |||
| 20 | <p>Any content of the document other than comments | ||
| 21 | must be put into the <code>html</code> element.</p> | ||
| 22 | </div> | ||
| 23 | |||
| 24 | wakaba | 1.7 | <div class="section parse-error" id="after-body"><h3>Tag <code><<var>$0</var>></code> |
| 25 | is not allowed after the end tag <code></body></code>.</h3> | ||
| 26 | <p>The start or end tag of an element appears after the | ||
| 27 | <code>body</code> element has been closed. The document is | ||
| 28 | non-conforming.</p> | ||
| 29 | |||
| 30 | <p>Any content of the document other than <code>head</code> | ||
| 31 | contents and comments must be put into the <code>body</code> | ||
| 32 | element.</p> | ||
| 33 | </div> | ||
| 34 | |||
| 35 | wakaba | 1.3 | <div class="section tokenize-error" id="bare-ero"><h3>The <code>&</code> character must |
| 36 | introduce a reference.</h3> | ||
| 37 | <p>An <code>&</code> (<code>U+0026</code> | ||
| 38 | <code class="charname">AMPERSAND</code>) character which | ||
| 39 | is not part of any reference appears in the input stream. | ||
| 40 | The document is non-conforming.</p> | ||
| 41 | |||
| 42 | <p>The <code>&</code> character must | ||
| 43 | be the first character of a reference: | ||
| 44 | <dl> | ||
| 45 | <dt>Named entity reference</dt> | ||
| 46 | <dd><pre class="html example"> | ||
| 47 | <code>&<var>entity-name</var>;</code></pre> | ||
| 48 |