Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Add some ignored rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgueriaud1 committed Dec 5, 2023
1 parent 120c9f2 commit 04da421
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ export class AccessibilityChecker extends LitElement implements MessageHandler {
// {ruleId: "input_label_before", htmlTag: "vaadin-text-field"}, that's a false positive, the label is before the input
{ruleId: "input_label_before"}, // that's a false positive, the label is before the input. Maybe we can filter only for vaadin components
{ruleId: "list_structure_proper", htmlTag: "vaadin-side-nav"},
{ruleId: "aria_child_valid", htmlTag: "vaadin-side-nav"} // the children "li" are not detected for the ul inside the shadow root of the vaadin-side-nav
{ruleId: "aria_child_valid", htmlTag: "vaadin-side-nav"}, // the children "li" are not detected for the ul inside the shadow root of the vaadin-side-nav
{ruleId: "label_content_exists", htmlTag: "vaadin-select"}, // https://github.com/vaadin/web-components/issues/6912
{ruleId: "aria_keyboard_handler_exists", htmlTag: "vaadin-combo-box"},
{ruleId: "aria_keyboard_handler_exists", htmlTag: "vaadin-date-picker"},
{ruleId: "aria_keyboard_handler_exists", htmlTag: "vaadin-tabs"}
];

startTests() {
Expand Down

0 comments on commit 04da421

Please sign in to comment.