axe-core 4.4.2-canary.7caef89 → 4.4.2-canary.94e75ac

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/axe.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! axe v4.4.2-canary.7caef89
1
+ /*! axe v4.4.2-canary.94e75ac
2
2
  * Copyright (c) 2022 Deque Systems, Inc.
3
3
  *
4
4
  * Your use of this Source Code Form is subject to the terms of the Mozilla Public
@@ -22,7 +22,7 @@
22
22
  }, _typeof(obj);
23
23
  }
24
24
  var axe = axe || {};
25
- axe.version = '4.4.2-canary.7caef89';
25
+ axe.version = '4.4.2-canary.94e75ac';
26
26
  if (typeof define === 'function' && define.amd) {
27
27
  define('axe-core', [], function() {
28
28
  return axe;
@@ -7064,7 +7064,7 @@
7064
7064
  return _isCurrentPageLink;
7065
7065
  },
7066
7066
  isFocusable: function isFocusable() {
7067
- return is_focusable_default;
7067
+ return _isFocusable;
7068
7068
  },
7069
7069
  isHTML5: function isHTML5() {
7070
7070
  return is_html5_default;
@@ -8029,7 +8029,7 @@
8029
8029
  return false;
8030
8030
  }
8031
8031
  var is_natively_focusable_default = isNativelyFocusable;
8032
- function isFocusable(el) {
8032
+ function _isFocusable(el) {
8033
8033
  var vNode = el instanceof abstract_virtual_node_default ? el : get_node_from_tree_default(el);
8034
8034
  if (vNode.props.nodeType !== 1) {
8035
8035
  return false;
@@ -8045,10 +8045,9 @@
8045
8045
  }
8046
8046
  return false;
8047
8047
  }
8048
- var is_focusable_default = isFocusable;
8049
8048
  function insertedIntoFocusOrder(el) {
8050
8049
  var tabIndex = parseInt(el.getAttribute('tabindex'), 10);
8051
- return tabIndex > -1 && is_focusable_default(el) && !is_natively_focusable_default(el);
8050
+ return tabIndex > -1 && _isFocusable(el) && !is_natively_focusable_default(el);
8052
8051
  }
8053
8052
  var inserted_into_focus_order_default = insertedIntoFocusOrder;
8054
8053
  function isHTML5(doc) {
@@ -10567,7 +10566,7 @@
10567
10566
  key: 'isFocusable',
10568
10567
  get: function get() {
10569
10568
  if (!this._cache.hasOwnProperty('isFocusable')) {
10570
- this._cache.isFocusable = is_focusable_default(this.actualNode);
10569
+ this._cache.isFocusable = _isFocusable(this.actualNode);
10571
10570
  }
10572
10571
  return this._cache.isFocusable;
10573
10572
  }
@@ -12685,7 +12684,7 @@
12685
12684
  var hasGlobalAria = get_global_aria_attrs_default().find(function(attr) {
12686
12685
  return vNode.hasAttr(attr);
12687
12686
  });
12688
- return emptyAlt && !hasGlobalAria && !is_focusable_default(vNode) ? 'presentation' : 'img';
12687
+ return emptyAlt && !hasGlobalAria && !_isFocusable(vNode) ? 'presentation' : 'img';
12689
12688
  },
12690
12689
  input: function input(vNode) {
12691
12690
  var suggestionsSourceElement;
@@ -12996,7 +12995,7 @@
12996
12995
  var hasGlobalAria = get_global_aria_attrs_default().some(function(attr) {
12997
12996
  return vNode.hasAttr(attr);
12998
12997
  });
12999
- return hasGlobalAria || is_focusable_default(vNode);
12998
+ return hasGlobalAria || _isFocusable(vNode);
13000
12999
  }
13001
13000
  function resolveRole(node) {
13002
13001
  var _ref37 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
@@ -15969,7 +15968,7 @@
15969
15968
  }
15970
15969
  if (invalid.length) {
15971
15970
  this.data(invalid);
15972
- if (!is_html_element_default(virtualNode) && !role && !is_focusable_default(virtualNode)) {
15971
+ if (!is_html_element_default(virtualNode) && !role && !_isFocusable(virtualNode)) {
15973
15972
  return void 0;
15974
15973
  }
15975
15974
  return false;
@@ -16215,10 +16214,15 @@
16215
16214
  if (!reqContext) {
16216
16215
  return null;
16217
16216
  }
16217
+ var allowsGroup = reqContext.includes('group');
16218
16218
  var vNode = includeElement ? virtualNode : virtualNode.parent;
16219
16219
  while (vNode) {
16220
- var parentRole = get_role_default(vNode);
16221
- if (reqContext.includes('group') && parentRole === 'group') {
16220
+ var role = get_role_default(vNode, {
16221
+ noPresentational: true
16222
+ });
16223
+ if (!role) {
16224
+ vNode = vNode.parent;
16225
+ } else if (role === 'group' && allowsGroup) {
16222
16226
  if (ownGroupRoles.includes(explicitRole2)) {
16223
16227
  reqContext.push(explicitRole2);
16224
16228
  }
@@ -16226,14 +16230,11 @@
16226
16230
  return r !== 'group';
16227
16231
  });
16228
16232
  vNode = vNode.parent;
16229
- continue;
16230
- }
16231
- if (reqContext.includes(parentRole)) {
16233
+ } else if (reqContext.includes(role)) {
16232
16234
  return null;
16233
- } else if (parentRole && ![ 'presentation', 'none' ].includes(parentRole)) {
16235
+ } else {
16234
16236
  return reqContext;
16235
16237
  }
16236
- vNode = vNode.parent;
16237
16238
  }
16238
16239
  return reqContext;
16239
16240
  }
@@ -16440,7 +16441,7 @@
16440
16441
  }
16441
16442
  var invalidrole_evaluate_default = invalidroleEvaluate;
16442
16443
  function isElementFocusableEvaluate(node, options, virtualNode) {
16443
- return is_focusable_default(virtualNode);
16444
+ return _isFocusable(virtualNode);
16444
16445
  }
16445
16446
  var is_element_focusable_evaluate_default = isElementFocusableEvaluate;
16446
16447
  function noImplicitExplicitLabelEvaluate(node, options, virtualNode) {
@@ -17470,7 +17471,7 @@
17470
17471
  var focusable_modal_open_evaluate_default = focusableModalOpenEvaluate;
17471
17472
  function focusableNoNameEvaluate(node, options, virtualNode) {
17472
17473
  var tabIndex = virtualNode.attr('tabindex');
17473
- var inFocusOrder = is_focusable_default(virtualNode) && tabIndex > -1;
17474
+ var inFocusOrder = _isFocusable(virtualNode) && tabIndex > -1;
17474
17475
  if (!inFocusOrder) {
17475
17476
  return false;
17476
17477
  }
@@ -17504,8 +17505,21 @@
17504
17505
  }) ? void 0 : false;
17505
17506
  }
17506
17507
  var focusable_not_tabbable_evaluate_default = focusableNotTabbableEvaluate;
17508
+ function frameFocusableContentEvaluate(node, options, virtualNode) {
17509
+ if (!virtualNode.children) {
17510
+ return void 0;
17511
+ }
17512
+ try {
17513
+ return !virtualNode.children.some(function(child) {
17514
+ return focusableDescendants(child);
17515
+ });
17516
+ } catch (e) {
17517
+ return void 0;
17518
+ }
17519
+ }
17507
17520
  function focusableDescendants(vNode) {
17508
- if (is_focusable_default(vNode)) {
17521
+ var tabIndex = parseInt(vNode.attr('tabindex'), 10);
17522
+ if ((isNaN(tabIndex) || tabIndex > -1) && _isFocusable(vNode)) {
17509
17523
  return true;
17510
17524
  }
17511
17525
  if (!vNode.children) {
@@ -17518,19 +17532,6 @@
17518
17532
  return focusableDescendants(child);
17519
17533
  });
17520
17534
  }
17521
- function frameFocusableContentEvaluate(node, options, virtualNode) {
17522
- if (!virtualNode.children) {
17523
- return void 0;
17524
- }
17525
- try {
17526
- return !virtualNode.children.some(function(child) {
17527
- return focusableDescendants(child);
17528
- });
17529
- } catch (e) {
17530
- return void 0;
17531
- }
17532
- }
17533
- var frame_focusable_content_evaluate_default = frameFocusableContentEvaluate;
17534
17535
  function landmarkIsTopLevelEvaluate(node) {
17535
17536
  var landmarks = get_aria_roles_by_type_default('landmark');
17536
17537
  var parent = get_composed_parent_default(node);
@@ -17584,7 +17585,7 @@
17584
17585
  var retVal = [];
17585
17586
  vNode.children.forEach(function(child) {
17586
17587
  var role = get_role_default(child);
17587
- if (get_role_type_default(role) === 'widget' && is_focusable_default(child)) {
17588
+ if (get_role_type_default(role) === 'widget' && _isFocusable(child)) {
17588
17589
  retVal.push(child);
17589
17590
  } else {
17590
17591
  retVal.push.apply(retVal, _toConsumableArray(getFocusableDescendants(child)));
@@ -18664,7 +18665,7 @@
18664
18665
  var is_data_cell_default = isDataCell;
18665
18666
  function isDataTable(node) {
18666
18667
  var role = (node.getAttribute('role') || '').toLowerCase();
18667
- if ((role === 'presentation' || role === 'none') && !is_focusable_default(node)) {
18668
+ if ((role === 'presentation' || role === 'none') && !_isFocusable(node)) {
18668
18669
  return false;
18669
18670
  }
18670
18671
  if (node.getAttribute('contenteditable') === 'true' || find_up_default(node, '[contenteditable="true"]')) {
@@ -19187,7 +19188,7 @@
19187
19188
  var hasGlobalAria = get_global_aria_attrs_default().some(function(attr) {
19188
19189
  return virtualNode.hasAttr(attr);
19189
19190
  });
19190
- var focusable = is_focusable_default(virtualNode);
19191
+ var focusable = _isFocusable(virtualNode);
19191
19192
  var messageKey;
19192
19193
  if (hasGlobalAria && !focusable) {
19193
19194
  messageKey = 'globalAria';
@@ -19594,7 +19595,7 @@
19594
19595
  var id = node.getAttribute('id').trim();
19595
19596
  var idSelector = '*[id="'.concat(escape_selector_default(id), '"]');
19596
19597
  var idMatchingElms = Array.from(get_root_node_default2(node).querySelectorAll(idSelector));
19597
- return !is_accessible_ref_default(node) && idMatchingElms.some(is_focusable_default);
19598
+ return !is_accessible_ref_default(node) && idMatchingElms.some(_isFocusable);
19598
19599
  }
19599
19600
  var duplicate_id_active_matches_default = duplicateIdActiveMatches;
19600
19601
  function duplicateIdAriaMatches(node) {
@@ -19606,7 +19607,7 @@
19606
19607
  var idSelector = '*[id="'.concat(escape_selector_default(id), '"]');
19607
19608
  var idMatchingElms = Array.from(get_root_node_default2(node).querySelectorAll(idSelector));
19608
19609
  return !is_accessible_ref_default(node) && idMatchingElms.every(function(elm) {
19609
- return !is_focusable_default(elm);
19610
+ return !_isFocusable(elm);
19610
19611
  });
19611
19612
  }
19612
19613
  var duplicate_id_misc_matches_default = duplicateIdMiscMatches;
@@ -19732,7 +19733,7 @@
19732
19733
  }
19733
19734
  var landmark_unique_matches_default = landmarkUniqueMatches;
19734
19735
  function dataTableMatches2(node) {
19735
- return !is_data_table_default(node) && !is_focusable_default(node);
19736
+ return !is_data_table_default(node) && !_isFocusable(node);
19736
19737
  }
19737
19738
  var layout_table_matches_default = dataTableMatches2;
19738
19739
  function linkInTextBlockMatches(node) {
@@ -19784,7 +19785,7 @@
19784
19785
  return true;
19785
19786
  }
19786
19787
  var _ref85 = aria_roles_default[role] || {}, accessibleNameRequired = _ref85.accessibleNameRequired;
19787
- if (accessibleNameRequired || is_focusable_default(virtualNode)) {
19788
+ if (accessibleNameRequired || _isFocusable(virtualNode)) {
19788
19789
  return true;
19789
19790
  }
19790
19791
  return false;
@@ -19931,7 +19932,7 @@
19931
19932
  'focusable-modal-open-evaluate': focusable_modal_open_evaluate_default,
19932
19933
  'focusable-no-name-evaluate': focusable_no_name_evaluate_default,
19933
19934
  'focusable-not-tabbable-evaluate': focusable_not_tabbable_evaluate_default,
19934
- 'frame-focusable-content-evaluate': frame_focusable_content_evaluate_default,
19935
+ 'frame-focusable-content-evaluate': frameFocusableContentEvaluate,
19935
19936
  'frame-focusable-content-matches': frame_focusable_content_matches_default,
19936
19937
  'frame-tested-after': frame_tested_after_default,
19937
19938
  'frame-tested-evaluate': frame_tested_evaluate_default,
@@ -23262,7 +23263,7 @@
23262
23263
  id: 'aria-command-name',
23263
23264
  selector: '[role="link"], [role="button"], [role="menuitem"]',
23264
23265
  matches: 'no-naming-method-matches',
23265
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
23266
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'ACT' ],
23266
23267
  actIds: [ '97a4e1' ],
23267
23268
  all: [],
23268
23269
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -23348,6 +23349,7 @@
23348
23349
  id: 'aria-required-attr',
23349
23350
  selector: '[role]',
23350
23351
  tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
23352
+ actIds: [ '4e8ab6' ],
23351
23353
  all: [],
23352
23354
  any: [ 'aria-required-attr' ],
23353
23355
  none: []
@@ -23356,7 +23358,7 @@
23356
23358
  selector: '[role]',
23357
23359
  matches: 'aria-required-children-matches',
23358
23360
  tags: [ 'cat.aria', 'wcag2a', 'wcag131' ],
23359
- actIds: [ 'ff89c9' ],
23361
+ actIds: [ 'bc4a75' ],
23360
23362
  all: [],
23361
23363
  any: [ {
23362
23364
  options: {
@@ -23370,7 +23372,7 @@
23370
23372
  selector: '[role]',
23371
23373
  matches: 'aria-required-parent-matches',
23372
23374
  tags: [ 'cat.aria', 'wcag2a', 'wcag131' ],
23373
- actIds: [ 'bc4a75', 'ff89c9' ],
23375
+ actIds: [ 'ff89c9' ],
23374
23376
  all: [],
23375
23377
  any: [ {
23376
23378
  options: {
@@ -23396,6 +23398,7 @@
23396
23398
  selector: '[role]',
23397
23399
  matches: 'no-empty-role-matches',
23398
23400
  tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
23401
+ actIds: [ '674b10' ],
23399
23402
  all: [],
23400
23403
  any: [],
23401
23404
  none: [ 'fallbackrole', 'invalidrole', 'abstractrole', 'unsupportedrole', 'deprecatedrole' ]
@@ -23411,6 +23414,7 @@
23411
23414
  selector: '[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',
23412
23415
  matches: 'no-naming-method-matches',
23413
23416
  tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'ACT' ],
23417
+ actIds: [ 'e086e5' ],
23414
23418
  all: [],
23415
23419
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
23416
23420
  options: {
@@ -23449,7 +23453,7 @@
23449
23453
  id: 'aria-valid-attr-value',
23450
23454
  matches: 'aria-has-attr-matches',
23451
23455
  tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
23452
- actIds: [ '5c01ea', 'c487ae' ],
23456
+ actIds: [ '6a7281' ],
23453
23457
  all: [ {
23454
23458
  options: [],
23455
23459
  id: 'aria-valid-attr-value'
@@ -23460,6 +23464,7 @@
23460
23464
  id: 'aria-valid-attr',
23461
23465
  matches: 'aria-has-attr-matches',
23462
23466
  tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
23467
+ actIds: [ '5f99a7' ],
23463
23468
  all: [],
23464
23469
  any: [ {
23465
23470
  options: [],
@@ -23472,14 +23477,14 @@
23472
23477
  enabled: false,
23473
23478
  excludeHidden: false,
23474
23479
  tags: [ 'cat.time-and-media', 'wcag2a', 'wcag121', 'section508', 'section508.22.a' ],
23475
- actIds: [ 'c3232f', 'e7aa44' ],
23480
+ actIds: [ '2eb176', 'afb423' ],
23476
23481
  all: [],
23477
23482
  any: [],
23478
23483
  none: [ 'caption' ]
23479
23484
  }, {
23480
23485
  id: 'autocomplete-valid',
23481
23486
  matches: 'autocomplete-matches',
23482
- tags: [ 'cat.forms', 'wcag21aa', 'wcag135' ],
23487
+ tags: [ 'cat.forms', 'wcag21aa', 'wcag135', 'ACT' ],
23483
23488
  actIds: [ '73f2c2' ],
23484
23489
  all: [ {
23485
23490
  options: {
@@ -23492,7 +23497,8 @@
23492
23497
  }, {
23493
23498
  id: 'avoid-inline-spacing',
23494
23499
  selector: '[style]',
23495
- tags: [ 'cat.structure', 'wcag21aa', 'wcag1412' ],
23500
+ tags: [ 'cat.structure', 'wcag21aa', 'wcag1412', 'ACT' ],
23501
+ actIds: [ '24afc2', '9e45ec', '78fd32' ],
23496
23502
  all: [ {
23497
23503
  options: {
23498
23504
  cssProperties: [ 'line-height', 'letter-spacing', 'word-spacing' ]
@@ -23530,6 +23536,7 @@
23530
23536
  matches: 'bypass-matches',
23531
23537
  reviewOnFail: true,
23532
23538
  tags: [ 'cat.keyboard', 'wcag2a', 'wcag241', 'section508', 'section508.22.o' ],
23539
+ actIds: [ 'cf77f2', '047fe0', 'b40fd1', '3e12e1', 'ye5d6e' ],
23533
23540
  all: [],
23534
23541
  any: [ 'internal-link-present', {
23535
23542
  options: {
@@ -23548,7 +23555,8 @@
23548
23555
  matches: 'color-contrast-matches',
23549
23556
  excludeHidden: false,
23550
23557
  enabled: false,
23551
- tags: [ 'cat.color', 'wcag2aaa', 'wcag146' ],
23558
+ tags: [ 'cat.color', 'wcag2aaa', 'wcag146', 'ACT' ],
23559
+ actIds: [ '09o5cg' ],
23552
23560
  all: [],
23553
23561
  any: [ {
23554
23562
  options: {
@@ -23576,7 +23584,8 @@
23576
23584
  id: 'color-contrast',
23577
23585
  matches: 'color-contrast-matches',
23578
23586
  excludeHidden: false,
23579
- tags: [ 'cat.color', 'wcag2aa', 'wcag143' ],
23587
+ tags: [ 'cat.color', 'wcag2aa', 'wcag143', 'ACT' ],
23588
+ actIds: [ 'afw4f7' ],
23580
23589
  all: [],
23581
23590
  any: [ {
23582
23591
  options: {
@@ -23645,6 +23654,7 @@
23645
23654
  matches: 'duplicate-id-active-matches',
23646
23655
  excludeHidden: false,
23647
23656
  tags: [ 'cat.parsing', 'wcag2a', 'wcag411' ],
23657
+ actIds: [ '3ea0c8' ],
23648
23658
  all: [],
23649
23659
  any: [ 'duplicate-id-active' ],
23650
23660
  none: []
@@ -23664,6 +23674,7 @@
23664
23674
  matches: 'duplicate-id-misc-matches',
23665
23675
  excludeHidden: false,
23666
23676
  tags: [ 'cat.parsing', 'wcag2a', 'wcag411' ],
23677
+ actIds: [ '3ea0c8' ],
23667
23678
  all: [],
23668
23679
  any: [ 'duplicate-id' ],
23669
23680
  none: []
@@ -23672,6 +23683,7 @@
23672
23683
  selector: 'h1, h2, h3, h4, h5, h6, [role="heading"]',
23673
23684
  matches: 'heading-matches',
23674
23685
  tags: [ 'cat.name-role-value', 'best-practice' ],
23686
+ actIds: [ 'ffd0e9' ],
23675
23687
  impact: 'minor',
23676
23688
  all: [],
23677
23689
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -23717,6 +23729,7 @@
23717
23729
  selector: 'html',
23718
23730
  matches: 'frame-focusable-content-matches',
23719
23731
  tags: [ 'cat.keyboard', 'wcag2a', 'wcag211' ],
23732
+ actIds: [ 'akn7bn' ],
23720
23733
  all: [],
23721
23734
  any: [ 'frame-focusable-content' ],
23722
23735
  none: []
@@ -23737,6 +23750,7 @@
23737
23750
  selector: 'frame[title], iframe[title]',
23738
23751
  matches: 'frame-title-has-text-matches',
23739
23752
  tags: [ 'cat.text-alternatives', 'best-practice' ],
23753
+ actIds: [ '4b1c6c' ],
23740
23754
  all: [],
23741
23755
  any: [],
23742
23756
  none: [ 'unique-frame-title' ]
@@ -23744,6 +23758,7 @@
23744
23758
  id: 'frame-title',
23745
23759
  selector: 'frame, iframe',
23746
23760
  tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag241', 'wcag412', 'section508', 'section508.22.i' ],
23761
+ actIds: [ 'cae760' ],
23747
23762
  all: [],
23748
23763
  any: [ {
23749
23764
  options: {
@@ -23810,7 +23825,7 @@
23810
23825
  excludeHidden: false,
23811
23826
  matches: 'identical-links-same-purpose-matches',
23812
23827
  tags: [ 'cat.semantics', 'wcag2aaa', 'wcag249' ],
23813
- actIds: [ 'b20e66', 'fd3a94' ],
23828
+ actIds: [ 'b20e66' ],
23814
23829
  all: [ 'identical-links-same-purpose' ],
23815
23830
  any: [],
23816
23831
  none: []
@@ -23844,7 +23859,8 @@
23844
23859
  id: 'input-button-name',
23845
23860
  selector: 'input[type="button"], input[type="submit"], input[type="reset"]',
23846
23861
  matches: 'no-explicit-name-required-matches',
23847
- tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a' ],
23862
+ tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a', 'ACT' ],
23863
+ actIds: [ '97a4e1' ],
23848
23864
  all: [],
23849
23865
  any: [ 'non-empty-if-present', {
23850
23866
  options: {
@@ -23904,7 +23920,7 @@
23904
23920
  selector: 'input, textarea',
23905
23921
  matches: 'label-matches',
23906
23922
  tags: [ 'cat.forms', 'wcag2a', 'wcag412', 'section508', 'section508.22.n', 'ACT' ],
23907
- actIds: [ 'e086e5', '307n5z' ],
23923
+ actIds: [ 'e086e5' ],
23908
23924
  all: [],
23909
23925
  any: [ 'implicit-label', 'explicit-label', 'aria-label', 'aria-labelledby', {
23910
23926
  options: {
@@ -24057,6 +24073,7 @@
24057
24073
  selector: 'meta[http-equiv="refresh"]',
24058
24074
  excludeHidden: false,
24059
24075
  tags: [ 'cat.time-and-media', 'wcag2a', 'wcag221', 'wcag224', 'wcag325' ],
24076
+ actIds: [ 'bc659a' ],
24060
24077
  all: [],
24061
24078
  any: [ 'meta-refresh' ],
24062
24079
  none: []
@@ -24103,7 +24120,7 @@
24103
24120
  excludeHidden: false,
24104
24121
  selector: 'audio[autoplay], video[autoplay]',
24105
24122
  matches: 'no-autoplay-audio-matches',
24106
- tags: [ 'cat.time-and-media', 'wcag2a', 'wcag142', 'experimental' ],
24123
+ tags: [ 'cat.time-and-media', 'wcag2a', 'wcag142', 'experimental', 'ACT' ],
24107
24124
  actIds: [ '80f0bf' ],
24108
24125
  preload: true,
24109
24126
  all: [ {
@@ -24170,7 +24187,8 @@
24170
24187
  id: 'presentation-role-conflict',
24171
24188
  matches: 'has-implicit-chromium-role-matches',
24172
24189
  selector: '[role="none"], [role="presentation"]',
24173
- tags: [ 'cat.aria', 'best-practice' ],
24190
+ tags: [ 'cat.aria', 'best-practice', 'ACT' ],
24191
+ actIds: [ '46ca7f' ],
24174
24192
  all: [],
24175
24193
  any: [],
24176
24194
  none: [ 'is-element-focusable', 'has-global-aria-attribute' ]
@@ -24313,7 +24331,8 @@
24313
24331
  id: 'valid-lang',
24314
24332
  selector: '[lang], [xml\\:lang]',
24315
24333
  matches: 'not-html-matches',
24316
- tags: [ 'cat.language', 'wcag2aa', 'wcag312' ],
24334
+ tags: [ 'cat.language', 'wcag2aa', 'wcag312', 'ACT' ],
24335
+ actIds: [ 'de46e4' ],
24317
24336
  all: [],
24318
24337
  any: [],
24319
24338
  none: [ {