vote up 0 vote down star

I'm trying to get a site to validate as HTML5 on the W3C Markup Validator. When I use the "Validate by URI" option, it generates a ton of errors, but when I copy and paste the HTML into the "Validate by direct input", it validates perfectly. When I run a diff on the two sources returned by the validator, the only differences are the Rails authenticity tokens (random strings Rails uses to validate forms - this is expected).

I've noticed that under both circumstances, I get a "No Character encoding declared at document level" warning, which I've seen on other sites but always assumed was a bug in the HTML5 validator, as I have an appropriate meta tag:

<meta charset="UTF-8">

Most of the errors are something along the lines of the following:

  • Quote " in attribute name. Probable cause: Matching quote missing somewhere earlier.
  • Bad value for attribute for on element label: An ID must not be the empty string.
  • Attribute "password" not allowed on element label at this point.

It acts like there's a mismatched quote, but I can't find anything wrong, and again, the identical direct input validates perfectly.

Any clue what's going on here? Thanks!

flag

What Content-Type is being sent by the server? Does it include a charset and, if so, is it UTF-8? – Nate Aug 18 at 2:13
Could we get a screenshot? – WebDevHobo Aug 18 at 2:35
I'm pretty inexperienced with HTTP headers, but I just checked using the Live HTTP Headers Firefox add-on and don't see any content-type parameters. Could this be causing the problem? Shouldn't it just fall back to the header in the document? – Grant Heaslip Aug 18 at 2:39
@WebDevHobo: Screenshot of the HTTP headers or W3C results? – Grant Heaslip Aug 18 at 2:39
@Grant: I am not that familiar with HTML5 yet, but according to this w3.org/TR/2008/… the document must be served with a text/html Content-Type. Combined with your comment below, I think the missing Content-Type is responsible for the first error. Regarding the other errors—is there a way you could show us part of the document that triggers the error? – Nate Aug 18 at 3:02
show 3 more comments

3 Answers

vote up 3 vote down check

This is a known bug in the W3C Perl layer. Validator.nu has the same back end but without the Perl layer.

link|flag
vote up 0 vote down
<meta charset="UTF-8">

Try using this instead:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
link|flag
I've already tried that. It does cause the "No Character encoding declared at document level" warning to go away, but otherwise doesn't fix anything. – Grant Heaslip Aug 18 at 2:25
vote up 1 vote down

It might be a validator bug, in which case your page could be of interest to the validator developers. Please consider getting in contact with them: http://validator.w3.org/feedback.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.