Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was checking html5boilerplate out in W3C Validator using a html5 test and it gave this error

Line 8, Column 64: Bad value X-UA-Compatible for attribute http-equiv on element meta.
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

What should the value be to pass this test?

share|improve this question

1 Answer

up vote 4 down vote accepted

Firstly, validation doesn't mean anything – html isn't XML, and hence doesn't have a schema like that to validate on.

Assuming you know that validation is pointless, and are treating it as a linter to help pick up errors, this error is an error. The X- prefix means that this is vendor specific, in this case it's for IE (meaning render in the best version), and for Chrome Frame (the 1 means on).

It's not invalid.

share|improve this answer
Ok so it won't be a problem to leave this as is then I take it? and what does this mean in layman's terms "html isn't XML, and hence doesn't have a schema like that to validate on." – Jizbo Jonez May 17 '12 at 7:07
Leaving it like this is fine. The point is that HTML doesn't have any real way to programmatically validate it – unlike XML (which people thought it was going to be with XHTML), the rules for HTML are well defined and clear, but many things are optional. Ensuring that it produces the correct DOM Tree (i.e. the browser renders it correctly) is the only way to decide if something is correct. The w3c validator will help you detect errors, but can only really be treated as advice generated by a computer. If you get hundreds of errors, it's worth digging into why, but that doesn't mean much. – Rich Bradshaw May 17 '12 at 9:47
Ok I get what you're saying now, thanks for the explanation Rich, much appreciated. – Jizbo Jonez May 17 '12 at 13:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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