-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a11y-label-has-associated-control check (#5074)
- Loading branch information
1 parent
f0d586f
commit 62ab75e
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
test/validator/samples/a11y-label-has-associated-control/input.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<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> |
32 changes: 32 additions & 0 deletions
32
test/validator/samples/a11y-label-has-associated-control/warnings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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 | ||
} | ||
} | ||
] |