testaro 72.2.0 → 72.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/testaro/focAndOp.js +3 -1
package/package.json
CHANGED
package/testaro/focAndOp.js
CHANGED
|
@@ -35,7 +35,9 @@ exports.reporter = async (page, catalog, withItems) => {
|
|
|
35
35
|
// Get whether it is focusable.
|
|
36
36
|
const isFocusable = element.tabIndex === 0;
|
|
37
37
|
// Get the operable tagnames.
|
|
38
|
-
const opTags = new Set(
|
|
38
|
+
const opTags = new Set(
|
|
39
|
+
['A', 'BUTTON', 'IFRAME', 'INPUT','OPTION', 'SELECT', 'SUMMARY', 'TEXTAREA']
|
|
40
|
+
);
|
|
39
41
|
// Get the operable roles.
|
|
40
42
|
const opRoles = new Set([
|
|
41
43
|
'button',
|