-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathaxe-patch-listitem.js
139 lines (111 loc) · 5.31 KB
/
axe-patch-listitem.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// 'use strict';
// /*
// This patch is needed to ensure that roles *inheriting* a list role are allowed
// as listitem parents.
// E.g. `<ul role="directory">` as parent of `li`.
// */
// (function axePatch(window) {
// const axe = window.axe;
// // v4.0.2
// // axe._audit.checks['listitem'].evaluate.toString()
// // =>
// // function(e){var t=Object(a.getComposedParent)(e);if(t){var r=t.nodeName.toUpperCase(),n=(t.getAttribute("role")||"").toLowerCase();return!!["presentation","none","list"].includes(n)||(n&&Object(o.isValidRole)(n)?(this.data({messageKey:"roleNotValid"}),!1):["UL","OL"].includes(r))}}
// // in the WebPack bundle (node_modules/axe-core/axe.js)
// // './lib/checks/lists/listitem-evaluate.js'
// axe._audit.checks['listitem'].evaluate = function evaluate(node, options, virtualNode, context) {
// // ----------------------------------------------------------------------------------------------------
// // https://github.com/dequelabs/axe-core/blob/v4.0.2/lib/checks/lists/listitem-evaluate.js
// // ----------------------------------------------------------------------------------------------------
// // const parent = getComposedParent(node);
// // if (!parent) {
// // // Can only happen with detached DOM nodes and roots:
// // return undefined;
// // }
// // const parentTagName = parent.nodeName.toUpperCase();
// // const parentRole = (parent.getAttribute('role') || '').toLowerCase();
// // if (['presentation', 'none', 'list'].includes(parentRole)) {
// // return true;
// // }
// // if (parentRole && isValidRole(parentRole)) {
// // this.data({
// // messageKey: 'roleNotValid'
// // });
// // return false;
// // }
// // return ['UL', 'OL'].includes(parentTagName);
// // ----------------------------------------------------------------------------------------------------
// // https://github.com/dequelabs/axe-core/blob/v3.5.4/lib/checks/lists/listitem.js
// // ----------------------------------------------------------------------------------------------------
// // const parent = axe.commons.dom.getComposedParent(node);
// // if (!parent) {
// // // Can only happen with detached DOM nodes and roots:
// // return undefined;
// // }
// // const parentTagName = parent.nodeName.toUpperCase();
// // const parentRole = (parent.getAttribute('role') || '').toLowerCase();
// // if (parentRole === 'list') {
// // return true;
// // }
// // if (parentRole && axe.commons.aria.isValidRole(parentRole)) {
// // this.data({
// // messageKey: 'roleNotValid'
// // });
// // return false;
// // }
// // return ['UL', 'OL'].includes(parentTagName);
// // ----------------------------------------------------------------------------------------------------
// // https://github.com/dequelabs/axe-core/blob/v3.2.2/lib/checks/lists/listitem.js
// // ----------------------------------------------------------------------------------------------------
// const parent = axe.commons.dom.getComposedParent(node);
// if (!parent) {
// // Can only happen with detached DOM nodes and roots:
// return undefined;
// }
// const parentTagName = parent.nodeName.toUpperCase();
// const parentRole = (parent.getAttribute('role') || '').toLowerCase();
// if (parentRole === 'list') {
// return true;
// }
// if (parentRole && axe.commons.aria.isValidRole(parentRole)) {
// this.data({
// messageKey: 'roleNotValid'
// });
// return false;
// }
// return ['UL', 'OL'].includes(parentTagName);
// // ----------------------------------------------------------------------------------------------------
// // OLD PATCH FOR AXE 3.2.2 (see above)
// // https://github.com/daisy/ace/blob/v1.1.1/packages/ace-core/src/scripts/axe-patch-listitem.js
// // ----------------------------------------------------------------------------------------------------
// const parent = axe.commons.dom.getComposedParent(node);
// if (!parent) {
// // Can only happen with detached DOM nodes and roots:
// return undefined;
// }
// const parentTagName = parent.nodeName.toUpperCase();
// const parentRole = (parent.getAttribute('role') || '').toLowerCase();
// if (['presentation', 'none', 'list'].includes(parentRole)) {
// return true;
// }
// if (parentRole && axe.commons.aria.isValidRole(parentRole)) {
// // ------------------------------------------------
// // THIS IS THE ACTUAL PATCH:
// if (axe.commons.aria.getRoleType(parentRole) === 'list') {
// return true;
// }
// // ------------------------------------------------
// try {
// this.data({
// messageKey: 'roleNotValid'
// });
// } catch (e) {
// // ignore error ("this" binding?)
// }
// return false;
// }
// return ['UL', 'OL'].includes(parentTagName);
// };
// if (axe._audit.checks['listitem'].evaluate.boundContext) {
// axe._audit.checks['listitem'].evaluate = axe._audit.checks['listitem'].evaluate.bind(axe._audit.checks['listitem'].evaluate.boundContext);
// }
// }(window));