Recursively check label children for input control (#5323)

* Recursively check label children for input control

* Add another test case

* Update snapshot

* clean up test

Co-authored-by: tanhauhau <lhtan93@gmail.com>
pull/7778/head
Niko Simonson 2 years ago committed by GitHub
parent 5b29124fbd
commit 419641bb3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -626,8 +626,24 @@ export default class Element extends Node {
}
if (this.name === 'label') {
const has_input_child = this.children.some(i => (i instanceof Element && a11y_labelable.has(i.name) ));
if (!attribute_map.has('for') && !has_input_child) {
const has_input_child = (children: INode[]) => {
if (children.some(child => (child instanceof Element && (a11y_labelable.has(child.name) || child.name === 'slot')))) {
return true;
}
for (const child of children) {
if (!('children' in child) || child.children.length === 0) {
continue;
}
if (has_input_child(child.children)) {
return true;
}
}
return false;
};
if (!attribute_map.has('for') && !has_input_child(this.children)) {
component.warn(this, compiler_warnings.a11y_label_has_associated_control);
}
}

@ -1,6 +1,12 @@
<script>
import LabelComponent from './label.svelte'
</script>
<label>A</label>
<label for="id">B</label>
<label>C <input type="text" /></label>
<label>D <button>D</button></label>
<label>E <span></span></label>
<label>F {#if true}<input type="text" />{/if}</label>
<LabelComponent>G <input type="text" /></LabelComponent>

@ -1,32 +1,32 @@
[
{
"code": "a11y-label-has-associated-control",
"end": {
"character": 16,
"column": 16,
"line": 1
},
"message": "A11y: A form label must be associated with a control.",
"pos": 0,
"start": {
"character": 0,
"column": 0,
"line": 1
}
},
{
"code": "a11y-label-has-associated-control",
"end": {
"character": 149,
"column": 30,
"line": 6
},
"message": "A11y: A form label must be associated with a control.",
"pos": 119,
"start": {
"character": 119,
"column": 0,
"line": 6
}
}
{
"code": "a11y-label-has-associated-control",
"end": {
"character": 82,
"column": 16,
"line": 5
},
"message": "A11y: A form label must be associated with a control.",
"pos": 66,
"start": {
"character": 66,
"column": 0,
"line": 5
}
},
{
"code": "a11y-label-has-associated-control",
"end": {
"character": 215,
"column": 30,
"line": 10
},
"message": "A11y: A form label must be associated with a control.",
"pos": 185,
"start": {
"character": 185,
"column": 0,
"line": 10
}
}
]

Loading…
Cancel
Save