NOTE: The current preferred location for bug reports is the GitHub issue tracker.
Bug 936 - forms with role="form" fail validation
forms with role="form" fail validation
Status: RESOLVED FIXED
Product: Validator.nu
Classification: Unclassified
Component: ARIA
HEAD
All All
: P2 normal
Assigned To: Nobody
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2012-08-04 11:03 CEST by Ian Yang
Modified: 2013-04-20 18:30 CEST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ian Yang 2012-08-04 11:03:48 CEST
form elements with ARIA role="form" fail vaidations. Below is the error message.

Error: Bad value form for attribute role on element form.
Comment 1 Michael[tm] Smith 2013-04-20 18:07:56 CEST
Fixed now. You can test at http://validator.w3.org/nu/
Comment 2 Ian Yang 2013-04-20 18:11:39 CEST
Hi, the following code still failed validation.


<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form role="form">
</form>
</body>
</html>
Comment 3 Michael[tm] Smith 2013-04-20 18:26:44 CEST
(In reply to comment #2)
> Hi, the following code still failed validation.
> 
> 
> <!DOCTYPE html>
> <html>
> <head>
> <title></title>
> </head>
> <body>
> <form role="form">
> </form>
> </body>
> </html>

Sorry I had not pushed it yet. Please try it again now at http://validator.w3.org/nu/
Comment 4 Ian Yang 2013-04-20 18:30:01 CEST
Thank you very much! It works now.