Click to See Complete Forum and Search --> : *Disappointed at Validation * AAA Section 508 Web Site


BuezaWebDev
08-08-2004, 03:22 PM
Official web page:
Official Web Page (http://www.usdoj.gov/crt/508/508home.html)

AAA Validation
validation page (http://bobby.watchfire.com/bobby/bobbyServlet?URL=http%3A%2F%2Fwww.usdoj.gov%2Fcrt%2F508%2F508home.html&output=Submit&gl=wcag1-aaa&test=)

Daniel T
08-08-2004, 03:37 PM
Originally posted by BuezaWebDev
Official web page:
Official Web Page (http://www.usdoj.gov/crt/508/508home.html)

AAA Validation
validation page (http://bobby.watchfire.com/bobby/bobbyServlet?URL=http%3A%2F%2Fwww.usdoj.gov%2Fcrt%2F508%2F508home.html&output=Submit&gl=wcag1-aaa&test=) LMAO. Then again, Bobby is a *****. I'd bet that site would validate with Cynthia...

MstrBob
08-08-2004, 04:26 PM
Nope. (http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=2&url1=http%3A//www.usdoj.gov/crt/508/508home.html)

Daniel T
08-08-2004, 04:40 PM
Originally posted by MstrBob
Nope. (http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=2&url1=http%3A//www.usdoj.gov/crt/508/508home.html) Wow. That's just sad. That would be like... McDonalds emloyees eating dinner at Burger King...

Stephen Philbin
08-10-2004, 07:52 AM
The Cynthia validator is saying there's a failure on my page but I simply can't see it.

I'm validating www.vagusnet.com/ptest/index.php and it's saying: Rule: 1.1.2 - All INPUT elements are required to contain the alt attribute or use a LABEL.
Failure - INPUT Element, of Type TEXT, found at Line: 17, Column: 79


However the only code on that line is: <div><label for="thename">Please select a name to be referred to by: </label><input type="text" name="uname" />

Any clues as to why it seems to believe there is no label there?

Oh and also, what are you supposed to do with a hidden input? It'd seem very stupid to put a label for a hidden input because as far as I can see it'd do exactly the opposite of what these guideline are intended for and simply confuse users by giving a label for an apparently non-existent form element. :confused:

Robert Wellock
08-10-2004, 08:24 AM
Nothing that sticks out maybe it's asking for an alt for the input element or place holder.

Alternatively it's referring to: <input type="text" name="uname" /> and the fact it has no label, which would make the most sense.

Stephen Philbin
08-10-2004, 12:23 PM
Oh yeah. I forgot to give the input the id of "thename" too.
D'oh!!

That was driving me mad.

Any ideas on the labels for hidden input though? It says labels for all input tags, but like I said, I think giving labels for hidden inputs would cause more problems than it would solve (if there would be any to solve at all).