-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathcheckout-a11y-violations-step-2.json
More file actions
34 lines (34 loc) · 1.12 KB
/
checkout-a11y-violations-step-2.json
File metadata and controls
34 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[
{
"id": "page-has-heading-one",
"impact": "moderate",
"description": "Ensure that the page, or at least one of its frames contains a level-one heading",
"help": "Page should contain a level-one heading",
"helpUrl": "https://dequeuniversity.com/rules/axe/4.10/page-has-heading-one?application=playwright",
"nodes": [
{
"html": "<html lang=\"en-US\" class=\"...\" >",
"failureSummary": "Fix all of the following:\n Page must have a level-one heading",
"target": [
"html"
]
}
]
},
{
"id": "region",
"impact": "moderate",
"description": "Ensure all page content is contained by landmarks",
"help": "All page content should be contained by landmarks",
"helpUrl": "https://dequeuniversity.com/rules/axe/4.10/region?application=playwright",
"nodes": [
{
"html": "<a class=\"...\" aria-label=\"Back to cart, number of items: 2\" href=\"/cart\">",
"failureSummary": "Fix any of the following:\n Some page content is not contained by landmarks",
"target": [
".css-..."
]
}
]
}
]