RESOLVED FIXED 177931
AX: [ATK] STATE_CHECKABLE should be removed from radio buttons in radiogroups with aria-readonly="true"
https://bugs.webkit.org/show_bug.cgi?id=177931
Summary AX: [ATK] STATE_CHECKABLE should be removed from radio buttons in radiogroups...
Joanmarie Diggs
Reported 2017-10-05 04:13:05 PDT
Radio buttons in a readonly ARIA radiogroup should not claim to be settable/checkable, as per the Core AAM: https://rawgit.com/w3c/aria/master/core-aam/core-aam.html#ariaReadonlyTrue
Attachments
Patch (6.28 KB, patch)
2017-10-05 04:18 PDT, Joanmarie Diggs
no flags
Radar WebKit Bug Importer
Comment 1 2017-10-05 04:13:25 PDT
Joanmarie Diggs
Comment 2 2017-10-05 04:18:36 PDT
chris fleizach
Comment 3 2017-10-09 09:34:38 PDT
Comment on attachment 322820 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=322820&action=review > Source/WebCore/accessibility/AccessibilityNodeObject.cpp:2107 > + return radioGroup ? radioGroup->ariaReadOnlyValue() != "true" : true; do we want to do equalIgnoringCase() for the != true
Joanmarie Diggs
Comment 4 2017-10-10 01:26:13 PDT
(In reply to chris fleizach from comment #3) > Comment on attachment 322820 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=322820&action=review > > > Source/WebCore/accessibility/AccessibilityNodeObject.cpp:2107 > > + return radioGroup ? radioGroup->ariaReadOnlyValue() != "true" : true; > > do we want to do equalIgnoringCase() for the != true In this case I don't believe it is necessary: ariaReadOnlyValue() applies convertToASCIILowercase() to the value being returned.
WebKit Commit Bot
Comment 5 2017-10-10 01:55:22 PDT
Comment on attachment 322820 [details] Patch Clearing flags on attachment: 322820 Committed r223126: <http://trac.webkit.org/changeset/223126>
WebKit Commit Bot
Comment 6 2017-10-10 01:55:24 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.