- From: James Craig <jcraig@apple.com>
- Date: Thu, 08 May 2014 10:15:35 -0700
- To: "Gunderson, Jon R" <jongund@illinois.edu>
- Cc: Steve Faulkner <faulkner.steve@gmail.com>, "w3c-wai-pf@w3.org WAI-PFWG" <w3c-wai-pf@w3.org>, "wai-xtech@w3.org" <wai-xtech@w3.org>
On May 8, 2014, at 10:05 AM, Gunderson, Jon R <jongund@illinois.edu> wrote: > So the following would be also be considered invalid, since the aria-required attribute is in conflict with the required attribute: > > <input type="checkbox" required aria-required="true"> I would call your example redundant, but not in conflict. Both @required and @aria-required have true values. Likewise the following example is redundant but not in conflict. <input type="checkbox" aria-required="false"> <!-- @required is false (implicit) and @aria-required is also false (explicit) --> However, the following examples are in conflict: <input type="checkbox" aria-required="true"> <!-- @required is false (implicit) and @aria-required is true (explicit) --> <input type="checkbox" required aria-required="false"> <!-- @required is true (explicit) and @aria-required is false (explicit) --> James
Received on Thursday, 8 May 2014 17:16:29 UTC