/[pub]/test/html-webhacc/cc-msg.en.txt
Suika

Diff of /test/html-webhacc/cc-msg.en.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by wakaba, Mon Jul 16 10:55:11 2007 UTC revision 1.27 by wakaba, Fri Aug 15 12:11:56 2008 UTC
# Line 1  Line 1 
1    m:illegal-octets-error;error-category-charset;An illegal octet in the input stream.
2    disallowed character encoding;;Character encoding <code><var>{text}</var></code> is not allowed for <abbr>HTML</abbr> document.
3    bad character encoding;;Character encoding <code><var>{text}</var></code> should not be used for <abbr>HTML</abbr> document.
4    non-utf-8 character encoding;;Use of UTF-8 is encouraged (this document is encoded in <code><var>{text}</var></code>).
5    character encoding unchecked;;Conformance for character encoding requirements cannot be checked, since the input is not a byte stream.
6    no character encoding declaration;;There is no character encoding declaration.
7    non ascii superset;;No character encoding metadata is found in lower‐level protocol nor is there <abbr>BOM</abbr>, while character encoding <code><var>{text}</var></code> is not a superset of <abbr>ASCII</abbr>.
8    sniffing:chardet;;Character encoding of this document is sniffed as <code><var>{text}</var></code> (Sniffed because no explicit specification for the character encoding of this document is found in the transfer procotol headers).
9    sniffing:default;;Character encoding of this document is defaulted to <code><var>{text}</var></code> because no explicit specification for the character encoding of this document is found in the transfer procotol headers.
10    chardecode:fallback;;Since no decoder for the document character encoding is found, decoder for the character encoding <code><var>{text}</var></code> is used. Checking results might be <em>wrong</em>.
11    chardecode:no error;;Conformance error checking for the character encoding <code><var>{text}</var></code> is not supported.
12    charset label:matching;;Sniffed character encoding <code><var>{text}</var></code> is same as the character encoding specified in the character encoding declaration. This is <em>not</em> an error.
13    charset label detected;format-charset warning;While parsing the document as <code><var>{text}</var></code>, a character encoding declaration specifying a different character encoding is found. The document is reparsed.
14    NULL;;The <code class="charname">NULL</code> character is not allowed.
15    control char;;Code point <code><var>{text}</var></code> is not allowed.
16  after html;parse-error;Tag <code>&lt;<var>$0</var>&gt;</code> is not allowed after the end tag <code>&lt;/html&gt;</code>.  after html;parse-error;Tag <code>&lt;<var>$0</var>&gt;</code> is not allowed after the end tag <code>&lt;/html&gt;</code>.
17  bare ero;tokenize-error;The <code>&amp;</code> character must introduce a reference.  after body;parse-error;Tag <code>&lt;<var>$0</var>&gt;</code> is not allowed after the end tag <code>&lt;/body&gt;</code>.
18    bad attribute name;tokenize-error;Attribute name cannot contain characters <code>"</code>, <code>'</code>, and <code>=</code>.
19    bad attribute value;tokenize-error;Attribute value must be quoted by <code>"</code> or <code>'</code> if it contains a <code>"</code>, <code>'</code>, or <code>=</code> character.
20    bare ero;tokenize-error;The <code>&amp;</code> character must be escaped as <code class="html example">&amp;amp;</code>.
21    bare etago;tokenize-error;A <code>&lt;/</code> string is not followed by a tag name.
22    bare stago;tokenize-error;A <code>&lt;</code> character is not followed by tag name or by a <code>!</code> character.
23  bare nero;tokenize-error;The decimal representation of the code position of a character must be specified after <code>&amp;#</code>.  bare nero;tokenize-error;The decimal representation of the code position of a character must be specified after <code>&amp;#</code>.
24  bare hcro;tokenize-error;The hexadecimal representation of the code position of a character must be specified after <code>&amp;#x</code>.  bare hcro;tokenize-error;The hexadecimal representation of the code position of a character must be specified after <code>&amp;#x</code>.
25  duplicate attribute;tokenize-error;There are two attributes with same name.  bogus comment;tokenize-error;String <code>&lt;!</code> is not followed by <code>--</code>.
26  nestc;tokenize-error;Void element syntax (<code>/&gt;</code>) cannot be used for this element.  bogus end tag;tokenize-error;String <code>&lt;/</code> is not followed by tag name.
27  after head;parse-error;The <code><var>$0</var></code> element cannot be inserted between <code>head</code> and <code>body</code> elements.  C1 character reference;tokenize-error;Character reference to <code><var>{text}</var></code> is not allowed.
28  in table;parse-error;Tag <code>&lt;<var>$0</var>&gt;</code> is not allowed in <code>table</code>.  CR character reference;tokenize-error;Character reference to <code>U+000D</code> (<code class="charname">CARRIAGE RETURN</code>) is not allowed.
29  in table:#character;parse-error;Data character is not allowed in <code>table</code>.  dash in comment;tokenize-error;There is a <code>--</code> sequence in a comment.
30    duplicate attribute;tokenize-error;There are two attributes with name <code><var>{text}</var></code>.
31    empty start tag;tokenize-error;Empty start tag (<code>&lt;&gt;</code>) is not allowed.
32    empty end tag;tokenize-error;Empty end tag (<code>&lt;/&gt;</code>) is not allowed.
33    end tag attribute;tokenize-error;End tag cannot have attributes.
34    invalid character reference;tokenize-error;Character reference to <code><var>{text}</var></code> is not allowed.
35    nestc;tokenize-error;Polytheistic slash (<code>/&gt;</code>) cannot be used for this element.
36    no DOCTYPE name;tokenize-error;After the string <code>&lt;!DOCTYPE </code>, the document type name must be specified.
37    no PUBLIC literal;tokenize-error;After the keyword <code>PUBLIC</code>, no oublic identifier is specified.
38    no refc;tokenize-error;Character reference must be closed by a <code>;</code> character.
39    no space before DOCTYPE name;tokenize-error;After the string <code>&lt;!DOCTYPE</code>, there must be at least a white space character before the document type name.
40    no space between attributes;tokenize-error;Attributes must be separeted by at least a white space character.
41    no SYSTEM literal;tokenize-error;After the keyword <code>SYSTEM</code>, no system identifier is specified.
42    pio;tokenize-error;Processing instruction (<code>&lt;?<var>...</var>&gt;</code>) is not allowed in HTML document.
43    string after DOCTYPE name;tokenize-error;There is a bogus string after the document type name.
44    string after PUBLIC;tokenize-error;There is a bogus string after the keyword <code>PUBLIC</code>.
45    string after PUBLIC literal;tokenize-error;There is a bogus string after the public identifier.
46    string after SYSTEM;tokenize-error;There is a bogus string after the keyword <code>SYSTEM</code>.
47    string after SYSTEM literal;tokenize-error;There is a bogus string after the system identifier.
48    unclosed attribute value;tokenize-error;Attribute value is not closed by a quotation mark.
49    unclosed comment;tokenize-error;Comment is not closed by a string <code>--&gt;</code>.
50    unclosed DOCTYPE;tokenize-error;The <code>DOCTYPE</code> is not closed by a <code>&gt;</code> character.
51    unclosed PUBLIC literal;tokenize-error;The public identifier literal is not closed by a quotation mark.
52    unclosed SYSTEM literal;tokenize-error;The system identifier literal is not closed by a quotation mark.
53    unclosed tag;tokenize-error;Tag is not closed by a <code>&gt;</code> character.
54    after body;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed after the <code>body</code> is closed.
55    after body:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed after the <code>body</code> is closed.
56    after body:#text;parse-error;Non‐white‐space characters are not allowed after the <code>body</code> is closed.
57    after frameset;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed after the <code>frameset</code> is closed.
58    after frameset:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed after the <code>frameset</code> is closed.
59    after frameset:#text;parse-error;Non‐white‐space characters are not allowed after the <code>frame</code> is closed.
60    after head;parse-error;The <code><var>{text}</var></code> element cannot be inserted between <code>head</code> and <code>body</code> elements.
61    after html;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed after the <code>html</code> is closed.
62    after html:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed after the <code>html</code> is closed.
63    after html:#text;parse-error;Non‐white‐space characters are not allowed after the <code>html</code> is closed.
64    image;parse-error;The <code>image</code> element is obsolete.
65    in a:a;parse-error;Anchor cannot be nested.
66    in body;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed in the <code>body</code> element.
67    in body:#eof;parse-error;Some element is not closed before the end of file.
68    in button:button;parse-error;The <code>button</code> element cannot be nested.
69    in CDATA:#eof;parse-error;Element is not closed before the end of file.
70    in form:form;parse-error;Start tag <code>&lt;form&gt;</code> is not allowed in a <code>form</code> element.
71    in frameset;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed in a <code>framset</code> element.
72    in frameset:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed in a <code>frameset</code> element.
73    in frameset:#text;parse-error;Non‐white‐space characters are not allowed in a <code>frameset</code> element.
74    in head:head;parse-error;Start tag <code>&lt;head&gt;</code> is not allowed in the <code>head</code> element.
75    in html:#DOCTYPE;parse-error;A <code>DOCTYPE</code> appears after any element or data character has been seen.
76    in nobr:nobr;parse-error;The <code>nobr</code> element cannot be nested.
77    in noscript;parse-error;The <code><var>{text}</var></code> element is not allowed in a <code>noscript</code> element in the <code>head</code> element.
78    in noscript:/;parse-error;An end tag <code>&lt;/<var>{text}</var>&gt;</code> appers before the <code>noscript</code> element is closed.
79    in noscript:#eof;parse-error;A <code>noscript</code> element is not closed before the end of file.
80    in noscript:#text;parse-error;Non‐white‐space characters are not allowed in a <code>noscript</code> element in the <code>head</code> element.
81    in PCDATA:#eof;parse-error;Element is not closed before the end of file.
82    in select;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed in a <code>select</code> element.
83    in select:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed in a <code>select</code> element.
84    in table;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed in a <code>table</code> element.
85    in table:/;parse-error;End tag <code>&lt;/<var>{text}</var>&gt;</code> is not allowed in a <code>table</code> element.
86    in table:#text;parse-error;Non‐white‐space character is not allowed within the <code>table</code> element, outside of the caption and cells.
87    isindex;parse-error;The <code>isindex</code> element is obsolete.
88  missing start tag:tr;parse-error;Start tag of <code>tr</code> element is missing.  missing start tag:tr;parse-error;Start tag of <code>tr</code> element is missing.
89  no DOCTYPE;parse-error;This document does not start with the <code>DOCTYPE</code>.  no DOCTYPE;parse-error;This document does not start with a <code>DOCTYPE</code>.
90  not closed;parse-error;Element <code><var>$0</var></code> is not closed.  not closed;parse-error;Element <code><var>{text}</var></code> is not closed.
91    not first start tag;parse-error;This <code>&lt;html&gt;</code> tag is not the first start tag.
92  not HTML5;parse-error;This document is written in an old version of HTML.  not HTML5;parse-error;This document is written in an old version of HTML.
93  unmatched end tag;parse-error;Element <code><var>$0</var></code> is not opened.  start tag not allowed;parse-error;Start tag <code>&lt;<var>{text}</var>&gt;</code> is not allowed here.
94  character not allowed;content-model-error;Data character is not allowed in this context.  unmatched end tag;parse-error;Element <code><var>{text}</var></code> is not opened.
95  child element missing;content-model-error;There must be a <code><var>$0</var></code> element as a child of this element.  basehref after URL attribute;;The <code>base</code> element with the <code>href</code> attribute specified cannot be placed after any attribute with a URL.
96    basetarget after hyperlink;;The <code>base</code> element with the <code>target</code> attribute specified cannot be placed after any element that defines a hyperlink.
97    character not allowed;;Data character is not allowed in this context.
98    character not allowed:empty;;Non‐white‐space characters are not allowed in an empty element.
99    child element missing;;There must be a <code><var>{text}</var></code> element as a child of this element.
100  child element missing:td|th;content-model-error;There must be a <code>td</code> or <code>th</code> element as a child of this element.  child element missing:td|th;content-model-error;There must be a <code>td</code> or <code>th</code> element as a child of this element.
101    element missing:hn;;There must be at least one <code>h<var>n</var></code> element descendant.
102  element not allowed;content-model-error;This element is not allowed in this context.  element not allowed;content-model-error;This element is not allowed in this context.
103  attribute missing;attribute-error;Required attribute <code><var>$0</var></code> is not specified.  element not allowed:area;;An <code>area</code> element cannot be used outside of a <code>map</code> element.
104    element not allowed:base;;There is another <code>base</code> element.
105    element not allowed:datatemplate;;In a <code>datatemplate</code> element, only <code>rule</code> elements are allowed.
106    element not allowed:details legend;;In a <code>details</code> element, only at the beginning of the element a <code>lengend</code> element may be used.
107    element not allowed:empty;;Elements are not allowed in an empty element.
108    element not allowed:figure legend;;In a <code>figure</code> element, only at the beginning or only at the end of the element a <code>lengend</code> element may be used.
109    element not allowed:flow;;This element is not allowed where flow content is expected.
110    element not allowed:flow style;;A <code>style</code> element without <code>scoped</code> attribute is not allowed in this context.
111    element not allowed:head noscript;;This element is not allowed in a <code>noscript</code> element in the <code>head</code> element.
112    element not allowed:head style;;A <code>style</code> element with <code>scoped</code> attribute is not allowed in the <code>head</code> element.
113    element not allowed:head title;;There is another <code>title</code> element.
114    element not allowed:minus;;This element is not allowed in this context.
115    element not allowed:meta charset;;The character encoding declaration must be the first element in the <code>head</code> element.
116    element not allowed:metadata;;This element is not allowed where metadata content is expected.
117    element not allowed:phrasing;;This element is not allowed where phrasing content is expected.
118    element not allowed:root;;This element is not allowed as the root element of a document.
119    element not allowed:root:xml;;This element is not allowed as the root element of an XML document.
120    element not allowed:ruby base;;This element is not allowed in the <code>ruby</code> element.
121    element not allowed:text;;This element is not allowed in this context.
122    element not defined;;This element is not defined.
123    no significant content;;No significant content is contained in this element.
124    no significant content before;;There is no significant content before this element.
125    no significant content at the end;;No significant content is contained at the end of this element.
126    ps element missing;;There is no <code><var>{text}</var></code> element before this element.
127    rp:syntax error;;The content of a <code>rp</code> element must be a parenthesis.
128    attribute missing;;Required attribute <code><var>{text}</var></code> is not specified.
129    attribute missing:data|type;;For an <code>object</code> at least one of <code>data</code> and <code>type</code> attributes must be specified.
130    attribute missing:href|target;;For a <code>base</code> element, at least one of <code>href</code> and <code>target</code> attributes must be specified.
131    attribute missing:name|http-equiv;;For a <code>meta</code> element with the <code>content</code> attribute specified, exactly one of <code>name</code> and <code>http-equiv</code> attributes must be specified.
132    attribute missing:name|http-equiv|charset;;For a <code>meta</code> element, exactly one of <code>name</code>, <code>http-equiv</code>, and <code>charset</code> attributes must be specified.
133    attribute not allowed;;Attribute <code><var>{local-name}</var></code> is not allowed for <code><var>{element-local-name}</var></code> element.
134    attribute not allowed:ismap;;The <code>ismap</code> attribute may only be used for the image contained in an <code>a</code> element.
135    attribute not defined;;This attribute is not defined.
136  in HTML:xml:lang;attribute-error;The <code>xml:lang</code> attribute is not allowed in HTML document.  in HTML:xml:lang;attribute-error;The <code>xml:lang</code> attribute is not allowed in HTML document.
137  in XML:charset;attribute-error;The <code>charset</code> attribute is not allowed in XML document.  in XML:charset;;The <code>charset</code> attribute is not allowed in XML document.
138  in XML:lang;attribute-error;The <code>lang</code> attribute is not allowed in XML document.  in XML:lang;;The <code>lang</code> attribute is not allowed in XML document.
139  in XML:xmlns;attribute-error;The <code>xmlns</code> attribute in the <code>null</code> namespace is not allowed in XHTML document. The document is non-conforming.  in XML:noscript;;A <code>noscript</code> element cannot be used in XML document.
140  enumerated:invalid;attribute-value-error;This attribute only allow a limited set of values and the specified value is not one of them.  in XML:xmlns;;The <code>xmlns</code> attribute in the <code>null</code> namespace is not allowed in XHTML document. The document is non-conforming.
141    boolean:invalid;;Attribute value <code><var>{@}</var></code> is not allowed. It must be an empty string or a string <code><var>{local-name}</var></code>.
142    char:syntax error;;The attribute value must be exactly one character.
143    charref in charset;;A character reference cannot be used to represent a character encoding name.
144    charset:not preferred;;Character encoding name <code><var>{value}</var></code> is not the preferred name of that character encoding.
145    charset:not registered;;Character encoding name <code><var>{value}</var></code> is not a registered name.
146    charset:private;;Character encoding name <code><var>{value}</var></code> is a private name.
147    charset:syntax error;;The specified value <code><var>{value}</var></code> is syntactically not a character encoding name.
148    color:syntax error;;The specified value is not a color name or hexadecimal color number.
149    coords:number not 3;;The <code>coords</code> attribute have to contain three (3) numbers (specified: <code><var>{text}</var></code>).
150    coords:number not 4;;The <code>coords</code> attribute have to contain four (4) numbers (specified: <code><var>{text}</var></code>).
151    coords:number lt 6;;The <code>coords</code> attribute have to contain more than or equal to six (6) numbers (specified: <code><var>{text}</var></code>).
152    coords:number not even;;The <code>coords</code> attribute have to contain even number of numbers (specified: <code><var>{text}</var></code>).
153    coords:out of range;;The specified value <code><var>{value}</var></code> is out of range.
154    coords:syntax error;;The specified value is not valid.
155    datetime:bad year;;Year number is out of range.
156    datetime:bad month;;Month number is out of range.
157    datetime:bad day;;Day number is out of range.
158    datetime:bad hour;;Hour number is out of range.
159    datetime:bad minute;;Minute number is out of range.
160    datetime:bad second;;Second number is out of range.
161    datetime:bad timezone hour;;Hour number of the timezone component is out of range.
162    datetime:bad timezone minute;;Minute number of the timezone component is out of range.
163    datetime:syntax error;;The attribute value is not a datetime.
164    dateortime:syntax error;;The attribute value is not a date or time.
165    enumerated:invalid;;This attribute only allow a limited set of values and the specified value <code><var>{@}</var></code> is not one of them.
166    enumerated:invalid:http-equiv:content-type;attribute-value-error;Character encoding declaration syntax <code class="html bad example">&lt;meta http-equiv="Content-Type" content="text/html; charset=<var>charset-name</var>"&gt;</code> is obsolete.
167    enumerated:non-conforming;;Attribute value <code><var>{@}</var></code> is not allowed.
168    duplicate http-equiv;;There is another pragma <code><var>{value}</var></code>.
169  duplicate ID;attribute-value-error;This identifier has already been assigned to another element.  duplicate ID;attribute-value-error;This identifier has already been assigned to another element.
170  reserved browsing context name;attribute-value-error;This browsing context name is reserved.  duplicate token;;The token <code><var>{value}</var></code> appears in the attribute value twice.
171    empty attribute value;;The attribute value must not be empty.
172    float:out of range;;The specified value is out of range.
173    float:syntax error;;The attribute value is not a real number.
174    fragment points itself;;A fragment identifier references the element itself.
175    fragment points nothing;;A fragment identifier references no node.
176    hashref:syntax error;;A hash−name reference must start with a <code>#</code> character.
177    id ne name;;The <code>id</code> attribute value is different from the <code>name</code> attribute value.
178    integer:syntax error;;The attribute value is not an integer.
179    link type:bad context;;The link type <code><var>{value}</var></code> cannot be specified for this element.
180    invalid attribute value;attribute-value-error;Attribute value <code><var>{@}</var></code> is not an allowed value.
181    length:syntax error;;The attribute value is not a length value.
182    link type:non-conforming;;The link type <code><var>{value}</var></code> is non-conforming.
183    meta content-type syntax error;;The specified value is not a valid as a long character encoding declaration.
184    mismatched charset name;;The specified character encoding name <code><var>{value}</var></code> is different from the actual document character encoding <code><var>{text}</var></code>.
185    mismatched charset name not checked;;Whether the specified character encoding name <code><var>{value}</var></code> matches to the actual character encoding name cannot be checked since the input is not a byte stream.
186    mode:syntax error;;The attribute value is not a valid mode name.
187    nninteger:out of range;;The specified value is out of range.
188    nninteger:syntax error;;The attribute value is not a non‐negative integer.
189    no referenced map;;The <code>usemap</code> attribute references no image map.
190    no referenced menu;;The <code>contextmenu</code> attribute references no menu.
191    refresh:syntax error;;the specified value is not a valid as part of a <code>Refresh</code> pragma.
192    repeat:syntax error;;The attribute value is not an integer or a string <code>template</code>.
193    reserved browsing context name;attribute-value-error;Browsing context name <code><var>{@}</var></code> is reserved.
194    Reserved Prefixes and Namespace Names:Name;;Namespace name <code><var>{text}</var></code> is reserved and cannot be used for an arbitrary prefix.
195    Reserved Prefixes and Namespace Names:Prefix;;Namespace prefix <code><var>{text}</var></code> is reserved and cannot be used for an arbitrary namespace name.
196    link type:proposed;;Link type <code><var>{value}</var></code> is proposed but not accepted yet; it <em>should not</em> be used until it has been accepted.
197    sizes:syntax error;;The specified value <code><var>{value}</var></code> is not a valid value.
198    space in ID;;White space characters are not allowed in the <code>id</code> attribute.
199    template:not template;;The node referenced by the <code>template</code> attribute is not a template.
200    window name:empty;;Browsing context name must not be empty.
201    window name:reserved;;Browsing context name <code><var>{value}</var></code> is reserved.
202    word not allowed;;The word <code><var>{value}</var></code> is not allowed in this attribute.
203  table:colspan creates column with no anchored cell;table-model-error;This <code>colspan</code> attribute results in creating a table column that does not contain any cell anchored to it.  table:colspan creates column with no anchored cell;table-model-error;This <code>colspan</code> attribute results in creating a table column that does not contain any cell anchored to it.
204  table:no cell in last row;table-model-error;The table has no cell (<code>td</code> or <code>th</code>) in the last row.  table:no cell in last row;table-model-error;The table has no cell (<code>td</code> or <code>th</code>) in the last row.
205  s:IMT:obsolete subtype;should;An <em>obsolete</em> subtype is used.  table:rowspan extends table;table-model-error;This <code>rowspan</code> attribute results in creating a table row that does not contain any cell anchored to it.
206  s:IMT:private subtype;should;A private (<code>x-</code> or <code>x.</code>) subtype is used.  IMT:syntax error;;The specified value is not an Internet Media Type.
207  s:IMT:unregistered subtype;should;The subtype is not registered to IANA.  s:IMT:obsolete subtype;should;<code><var>{@}</var></code>: An <em>obsolete</em> subtype is used.
208  m:URI::syntax error;must;This string is not an IRI syntactically.  s:IMT:private subtype;should;<code><var>{@}</var></code>: A private (<code>x-</code> or <code>x.</code>) subtype is used.
209  s:URI::dot-segment;should;Dot-segment (<code>.</code> or <code>..</code>) should not occur in an absolute reference.  s:IMT:unregistered subtype;should;<code><var>{@}</var></code>: The subtype is not registered to IANA.
210  s:URI::empty path;should;This IRI should explicitly end with <code>/</code>.  m:URI::syntax error;must;The specified value is syntactically not an IRI reference.
211  unsupported:attribute;unsupported;This attribute is not supported by the conformance checker; <em>it might or might not be conforming</em>.  s:URI::dot-segment;should;A dot-segment (<code>.</code> or <code>..</code>) occurs in an absolute reference.
212  unsupported:element;unsupported;This element is not supported by the conformance checker; <em>it might or might not be conforming</em>.  s:URI::empty path;should;This IRI does not end with a <code>/</code>.
213  unsupported:link type;unsupported;The link type <code>$0</code> is not standardized or registered at the time of the release of the conformance checker; <em>it is non-conforming unless it has now been registered</em>.  s:URI::lowercase hexadecimal digit;should;A lowercase hexadecimal digit is used in percent-encoding.
214    s:URI::percent-encoded unreserved;should;An unreserved character is percent-encoded.
215    s:URI::uppercase scheme name;should;URI scheme name is in uppercase.
216    m:not manifest;must;This document is not a cache manifest.
217    deprecated:attr;;This attribute is deprecated.
218    deprecated:element;;This element is deprecated.
219    status:cr:element;;This element is in the <strong>call for implementation</strong> stage.
220    status:lc:element;;This element is in the <strong>last call for comments</strong> stage.
221    status:wd:element;;This element is documented in a <strong>working draft</strong>.
222    status:non-standard:element;;This element is <strong>not part of any standard</strong> the conformance checker knows.
223    status:cr:attr;;This attribute is in the <strong>call for implementation</strong> stage.
224    status:lc:attr;;This attribute is in the <strong>last call for comments</strong> stage.
225    status:wd:attr;;This attribute is documented in a <strong>working draft</strong>.
226    status:non-standard:attr;;This attribute is <strong>not part of any standard</strong> the conformance checker knows.
227    unknown element;;Conformance checking for element <code><var>{local-name}</var></code> is not supported; <em>it might or might not be conforming</em>.
228    unknown attribute;;Conformance checking for attribute <code><var>{local-name}</var></code> of element <code><var>{element-local-name}</var></code> is not supported; <em>it might or might not be conforming</em>.
229    unknown link type;;Link type <code><var>{value}</var></code> is not standardized or registered at the time of the release of the conformance checker; <em>it is non-conforming unless it now has been registered</em>.
230    event handler;;Conformance checking for event handler attribute is not supported; <em>it might or might not be conforming.</em>
231    media query;;Conformance checking for media query is not supported; <em>it might or might not be conforming.</em>
232    XML script lang;;Conformance checking for script language <code><var>{text}</var></code> is not supported; <em>it might or might not be conforming.</em>
233    XML style lang;;Conformance checking for style language <code><var>{text}</var></code> is not supported; <em>it might or might not be conforming.</em>
234    WebHACC:Title;;WebHACC (β)
235    WebHACC:Heading;; <a href="../cc-about"><abbr title="Web Hypertext Application Conformance Checker (β)"><img alt="WebHACC" src="../icons/title"></abbr></a>
236    Input;;Input
237    By URL;;By URL
238    By direct input;;By direct input
239    Options;;More options
240    Check error page;;Check an error page
241    Content type;;Content type
242    Charset;;Character encoding
243    As specified;;As specified
244    Japanese charsets;;Japanese character encodings
245    European charsets;;European character encodings
246    Asian charsets;;Asian character encodings
247    Unicode charsets;;Unicode character encodings
248    Document source to check;;Document source to check
249    Check;;Check
250    Setting innerHTML;;Setting <code>innerHTML</code> of HTML element
251    Information;;Information
252    HTTP Header;;<abbr title="Hypertext Transfer Protocol">HTTP</abbr> Header
253    Parse Errors Section;;Parse Errors
254    Parse Errors;;Parse Errors
255    Document Source;;Document Source
256    Source;;Source
257    Tables Section;;Structure of Tables
258    Tables;;Tables
259    Document Tree;;Document Tree
260    Tree;;Tree
261    Document;;Document
262    Document Structure;;Document Structure
263    Structure;;Structure
264    Reformatted Document Source;;Reformatted Document Source
265    Reformatted;;Reformatted
266    Structural Errors;;Structural Errors
267    Struct. Errors;;Struct. Errors
268    Transfer Errors;;Transfer Errors
269    Trans. Errors;;Trans. Errors
270    Result;;Result
271  manakaiCompatMode:quirks;;Quirks Mode  manakaiCompatMode:quirks;;Quirks Mode
272  manakaiCompatMode:limited quirks;;Limited Quirks Mode  manakaiCompatMode:limited quirks;;Limited Quirks Mode
273  manakaiCompatMode:no quirks;;No Quirks Mode  manakaiCompatMode:no quirks;;No Quirks Mode
   
274  manakaiIsHTML:1;;HTML Document  manakaiIsHTML:1;;HTML Document
275  manakaiIsHTML:0;;XML Document  manakaiIsHTML:0;;XML Document
276    manakaiCharset;;<code>charset</code> parameter
277    inputEncoding;;Input character encoding
278    xmlVersion;;XML <code>version</code>
279    xmlEncoding;;XML <code>encoding</code>
280    xmlStandalone;;XML <code>standalone</code>
281    ... with BOM;; (with <code class="charname"><abbr title="BYTE ORDER MARK">BOM</abbr></code>)
282    URL;;<abbr title="Uniform Resource Locator">URL</abbr>
283    URLs;;<abbr title="Uniform Resource Locators">URLs</abbr>
284    Container Node;;Container Node
285    Table Element;;Table Element
286    Base URL;;Base URL
287    Internet Media Type;;Internet Media Type
288    Character Encoding;;Character Encoding
289    Byte Length;;Byte Length
290    Character Length;;Character Length
291    ... overridden;; (<i>overridden</i>)
292    ... overridden, official type is #;; (<i>overridden</i>; official type is <code class="MIME" lang="en"><var>{text}</var></code>)
293    ... sniffed;; (<i>sniffed</i>)
294    byte;;byte
295    bytes;;bytes
296    character;;character
297    characters;;characters
298    Line #;;Line <var>{text}</var>
299    column #;;column <var>{text}</var>
300    Index #;;Index <var>{text}</var>
301    Unknown location;;Unknown location
302    Table #;;Structure of Table #<var>{text}</var>
303    Subdocument #;;Subdocument #<var>{text}</var>
304    Sub #;;Sub #<var>{text}</var>
305    ...;;..
306    Score;;Score
307    Subtotal;;Subtotal
308    Total;;Total
309    Main document;;Main document
310    Subdocuments;;Subdocuments
311    Transfer L.;;<abbr title="Transfer protocol">Transfer</abbr>
312    Encode L.;;<abbr title="Character encoding">Encoding</abbr>
313    Char L.;;<abbr title="Coded characters">Character</abbr>
314    Syntax L.;;Syntax
315    Structure L.;;Structure
316    Semantics L.;;Semantics
317    N/A;;N/A
318    No error found.;;No error found.
319    No transfer error found.;;This document has no transfer protocol header error.
320    No parse error found.;;This document has no parse error.
321    No structural error found.;;This document has no structral error.
322    This checker is work in progress.;; <p><strong>Important</strong>: This conformance checking service is <em>under development</em>. The result above might be <em>wrong</em>.</p>
323    Conformance is conforming;;No conformance‐error is found in this document.
324    Conformance is should-error;;This document is <strong>likely <em>non</em>-conforming</strong>, but in rare case it might be conforming. The checker cannot determine whether this document is in the rare case or not.
325    Conformance is non-conforming;;This document is <strong><em>non</em>-conforming</strong>.
326    Conformance is uncertain;;The conformance checker cannot decide whether the document is conforming or not, since the document contains one or more unsupported features. The document might or might not be conforming.
327    Error level m;;<a href="../error-description#level-m"><em class="rfc2119">MUST</em>‐level error</a>
328    Error level s;;<a href="../error-description#level-s"><em class="rfc2119">SHOULD</em>‐level error</a>
329    Error level w;;<a href="../error-description#level-w">Warning</a>
330    Error level i;;<a href="../error-description#level-i">Information</a>
331    Error level u;;<a href="../error-description#level-u">Not supported</a>

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.27

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24