Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(button-name,input-button-name,input-img-alt): allow label to give accessible name #4607

Merged
merged 3 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/checks/label/explicit.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"metadata": {
"impact": "critical",
"messages": {
"pass": "Form element has an explicit <label>",
"fail": "Form element does not have an explicit <label>",
"pass": "Element has an explicit <label>",
"fail": "Element does not have an explicit <label>",
"incomplete": "Unable to determine if form element has an explicit <label>"
}
}
Expand Down
4 changes: 2 additions & 2 deletions lib/checks/label/implicit.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"metadata": {
"impact": "critical",
"messages": {
"pass": "Form element has an implicit (wrapped) <label>",
"fail": "Form element does not have an implicit (wrapped) <label>",
"pass": "Element has an implicit (wrapped) <label>",
"fail": "Element does not have an implicit (wrapped) <label>",
"incomplete": "Unable to determine if form element has an implicit (wrapped) <label>"
}
}
Expand Down
5 changes: 2 additions & 3 deletions lib/commons/text/native-text-methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ const nativeTextMethods = {
* @param {VirtualNode} element
* @return {String} value text
*/
valueText: ({ actualNode }) => actualNode.value || '',
valueText: vNode => vNode.props.value || '',

/**
* Return default value of a button
* @param {VirtualNode} element
* @return {String} default button text
*/
buttonDefaultText: ({ actualNode }) =>
defaultButtonValues[actualNode.type] || '',
buttonDefaultText: vNode => defaultButtonValues[vNode.attr('type')] || '',
straker marked this conversation as resolved.
Show resolved Hide resolved

/**
* Return caption text of an HTML table element
Expand Down
2 changes: 2 additions & 0 deletions lib/rules/button-name.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
"aria-label",
"aria-labelledby",
"non-empty-title",
"implicit-label",
"explicit-label",
"presentational-role"
],
"none": []
Expand Down
2 changes: 2 additions & 0 deletions lib/rules/input-button-name.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
"aria-label",
"aria-labelledby",
"non-empty-title",
"implicit-label",
"explicit-label",
"presentational-role"
],
"none": []
Expand Down
9 changes: 8 additions & 1 deletion lib/rules/input-image-alt.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
"help": "Image buttons must have alternative text"
},
"all": [],
"any": ["non-empty-alt", "aria-label", "aria-labelledby", "non-empty-title"],
"any": [
"non-empty-alt",
"aria-label",
"aria-labelledby",
"non-empty-title",
"implicit-label",
"explicit-label"
],
"none": []
}
8 changes: 4 additions & 4 deletions locales/_template.json
Original file line number Diff line number Diff line change
Expand Up @@ -771,8 +771,8 @@
"fail": "Element contains <img> element with alt text that duplicates existing text"
},
"explicit-label": {
"pass": "Form element has an explicit <label>",
"fail": "Form element does not have an explicit <label>",
"pass": "Element has an explicit <label>",
"fail": "Element does not have an explicit <label>",
"incomplete": "Unable to determine if form element has an explicit <label>"
},
"help-same-as-label": {
Expand All @@ -785,8 +785,8 @@
"incomplete": "Unable to determine if form element has explicit <label> that is hidden"
},
"implicit-label": {
"pass": "Form element has an implicit (wrapped) <label>",
"fail": "Form element does not have an implicit (wrapped) <label>",
"pass": "Element has an implicit (wrapped) <label>",
"fail": "Element does not have an implicit (wrapped) <label>",
"incomplete": "Unable to determine if form element has an implicit (wrapped) <label>"
},
"label-content-name-mismatch": {
Expand Down
4 changes: 4 additions & 0 deletions test/integration/rules/button-name/button-name.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
<button id="pass1" role="presentation" disabled></button>
<button id="pass2" role="none" disabled></button>

<label>Name<button id="pass3"></button></label>
<label for="pass4">Name</label>
<button id="pass4"></button>

<span id="inapplicable1" role="button">Does not apply</span>
<input type="submit" value="submit" role="button" id="inapplicable2" />
<button id="inapplicable2" role="gridcell" disabled></button>
4 changes: 3 additions & 1 deletion test/integration/rules/button-name/button-name.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
["#combo"],
["#buttonTitle"],
["#pass1"],
["#pass2"]
["#pass2"],
["#pass3"],
["#pass4"]
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
<input type="button" role="none" id="pass12" disabled />
<input type="button" role="presentation" id="pass13" disabled />

<label>Name<input type="button" id="pass14" /></label>
<label for="pass15">Name</label>
<input type="button" id="pass15" />

<input type="button" id="fail9" role="img" disabled />
<input type="button" id="fail10" role="gridcell" />
<input type="button" id="inapplicable1" role="gridcell" disabled />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
["#pass10"],
["#pass11"],
["#pass12"],
["#pass13"]
["#pass13"],
["#pass14"],
["#pass15"]
]
}
4 changes: 4 additions & 0 deletions test/integration/rules/input-image-alt/input-image-alt.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<input type="image" src="img.jpg" id="pass4" title="monkeys" />
<input type="image" src="img.jpg" id="violation5" alt="" />

<label>Name<input type="image" src="img.jpg" id="pass5" /></label>
<label for="pass6">Name</label>
<input type="image" src="img.jpg" id="pass6" />

<input type="image" src="img.jpg" id="violation6" role="img" disabled />
<input type="image" src="img.jpg" id="violation7" role="gridcell" />
<input
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,12 @@
["#violation6"],
["#violation7"]
],
"passes": [["#pass1"], ["#pass2"], ["#pass3"], ["#pass4"]]
"passes": [
["#pass1"],
["#pass2"],
["#pass3"],
["#pass4"],
["#pass5"],
["#pass6"]
]
}
Loading
Loading