axe-core 4.7.2-canary.16c5cfa → 4.7.2-canary.481ade0

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.7.2-canary.16c5cfa
1
+ /*! axe v4.7.2-canary.481ade0
2
2
  * Copyright (c) 2023 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.7.2-canary.16c5cfa';
25
+ axe.version = '4.7.2-canary.481ade0';
26
26
  if (typeof define === 'function' && define.amd) {
27
27
  define('axe-core', [], function() {
28
28
  return axe;
@@ -5084,7 +5084,7 @@
5084
5084
  return check_helper_default;
5085
5085
  },
5086
5086
  clone: function clone() {
5087
- return clone_default;
5087
+ return _clone;
5088
5088
  },
5089
5089
  closest: function closest() {
5090
5090
  return closest_default;
@@ -6154,28 +6154,35 @@
6154
6154
  };
6155
6155
  }
6156
6156
  var check_helper_default = checkHelper;
6157
- function clone(obj) {
6157
+ function _clone(obj) {
6158
+ return cloneRecused(obj, new Map());
6159
+ }
6160
+ function cloneRecused(obj, seen) {
6158
6161
  var _window, _window2;
6159
- var index, length, out = obj;
6160
- if ((_window = window) !== null && _window !== void 0 && _window.Node && obj instanceof window.Node || (_window2 = window) !== null && _window2 !== void 0 && _window2.HTMLCollection && obj instanceof window.HTMLCollection) {
6162
+ if (obj === null || _typeof(obj) !== 'object') {
6161
6163
  return obj;
6162
6164
  }
6163
- if (obj !== null && _typeof(obj) === 'object') {
6164
- if (Array.isArray(obj)) {
6165
- out = [];
6166
- for (index = 0, length = obj.length; index < length; index++) {
6167
- out[index] = clone(obj[index]);
6168
- }
6169
- } else {
6170
- out = {};
6171
- for (index in obj) {
6172
- out[index] = clone(obj[index]);
6173
- }
6174
- }
6165
+ if ((_window = window) !== null && _window !== void 0 && _window.Node && obj instanceof window.Node || (_window2 = window) !== null && _window2 !== void 0 && _window2.HTMLCollection && obj instanceof window.HTMLCollection || 'nodeName' in obj && 'nodeType' in obj && 'ownerDocument' in obj) {
6166
+ return obj;
6167
+ }
6168
+ if (seen.has(obj)) {
6169
+ return seen.get(obj);
6170
+ }
6171
+ if (Array.isArray(obj)) {
6172
+ var out2 = [];
6173
+ seen.set(obj, out2);
6174
+ obj.forEach(function(value) {
6175
+ out2.push(cloneRecused(value, seen));
6176
+ });
6177
+ return out2;
6178
+ }
6179
+ var out = {};
6180
+ seen.set(obj, out);
6181
+ for (var key in obj) {
6182
+ out[key] = cloneRecused(obj[key], seen);
6175
6183
  }
6176
6184
  return out;
6177
6185
  }
6178
- var clone_default = clone;
6179
6186
  var import_css_selector_parser = __toModule(require_lib());
6180
6187
  var parser = new import_css_selector_parser.CssSelectorParser();
6181
6188
  parser.registerSelectorPseudos('not');
@@ -16663,7 +16670,7 @@
16663
16670
  }
16664
16671
  function Context(spec, flatTree) {
16665
16672
  var _spec, _spec2, _spec3, _spec4, _this5 = this;
16666
- spec = clone_default(spec);
16673
+ spec = _clone(spec);
16667
16674
  this.frames = [];
16668
16675
  this.page = typeof ((_spec = spec) === null || _spec === void 0 ? void 0 : _spec.page) === 'boolean' ? spec.page : void 0;
16669
16676
  this.initiator = typeof ((_spec2 = spec) === null || _spec2 === void 0 ? void 0 : _spec2.initiator) === 'boolean' ? spec.initiator : true;
@@ -16796,7 +16803,7 @@
16796
16803
  }
16797
16804
  var get_scroll_state_default = getScrollState;
16798
16805
  function _getStandards() {
16799
- return clone_default(standards_default);
16806
+ return _clone(standards_default);
16800
16807
  }
16801
16808
  function getStyleSheetFactory(dynamicDoc) {
16802
16809
  if (!dynamicDoc) {
@@ -17718,7 +17725,7 @@
17718
17725
  var checksData = axe._audit.data.checks || {};
17719
17726
  var rulesData = axe._audit.data.rules || {};
17720
17727
  var rule = find_by_default(axe._audit.rules, 'id', ruleResult.id) || {};
17721
- ruleResult.tags = clone_default(rule.tags || []);
17728
+ ruleResult.tags = _clone(rule.tags || []);
17722
17729
  var shouldBeTrue = extender(checksData, true, rule);
17723
17730
  var shouldBeFalse = extender(checksData, false, rule);
17724
17731
  ruleResult.nodes.forEach(function(detail) {
@@ -17726,7 +17733,7 @@
17726
17733
  detail.all.forEach(shouldBeTrue);
17727
17734
  detail.none.forEach(shouldBeFalse);
17728
17735
  });
17729
- extend_meta_data_default(ruleResult, clone_default(rulesData[ruleResult.id] || {}));
17736
+ extend_meta_data_default(ruleResult, _clone(rulesData[ruleResult.id] || {}));
17730
17737
  }
17731
17738
  var publish_metadata_default = publishMetaData;
17732
17739
  function querySelectorAll(domTree, selector) {
@@ -20312,7 +20319,7 @@
20312
20319
  var implicit = null;
20313
20320
  var roles = lookup_table_default.role[role];
20314
20321
  if (roles && roles.implicit) {
20315
- implicit = clone_default(roles.implicit);
20322
+ implicit = _clone(roles.implicit);
20316
20323
  }
20317
20324
  return implicit;
20318
20325
  }
@@ -25792,8 +25799,8 @@
25792
25799
  var ruleID = this.id;
25793
25800
  afterChecks.forEach(function(check) {
25794
25801
  var beforeResults = findCheckResults(result.nodes, check.id);
25795
- var option = get_check_option_default(check, ruleID, options);
25796
- var afterResults = check.after(beforeResults, option);
25802
+ var checkOption = get_check_option_default(check, ruleID, options);
25803
+ var afterResults = check.after(beforeResults, checkOption.options);
25797
25804
  if (_this12.reviewOnFail) {
25798
25805
  afterResults.forEach(function(checkResult) {
25799
25806
  var changeAnyAllResults = (_this12.any.includes(checkResult.id) || _this12.all.includes(checkResult.id)) && checkResult.result === false;
@@ -25866,7 +25873,7 @@
25866
25873
  function getDefaultConfiguration(audit) {
25867
25874
  var config;
25868
25875
  if (audit) {
25869
- config = clone_default(audit);
25876
+ config = _clone(audit);
25870
25877
  config.commons = audit.commons;
25871
25878
  } else {
25872
25879
  config = {};
@@ -26616,7 +26623,7 @@
26616
26623
  if (typeof callback !== 'function' && callback !== void 0) {
26617
26624
  throw typeErr;
26618
26625
  }
26619
- options = clone_default(options);
26626
+ options = _clone(options);
26620
26627
  options.reporter = (_ref139 = (_options$reporter = options.reporter) !== null && _options$reporter !== void 0 ? _options$reporter : (_axe$_audit = axe._audit) === null || _axe$_audit === void 0 ? void 0 : _axe$_audit.reporter) !== null && _ref139 !== void 0 ? _ref139 : 'v1';
26621
26628
  return {
26622
26629
  context: context,
@@ -26768,7 +26775,7 @@
26768
26775
  function finishRun(partialResults) {
26769
26776
  var _ref145, _options$reporter2, _axe$_audit2;
26770
26777
  var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
26771
- options = clone_default(options);
26778
+ options = _clone(options);
26772
26779
  var _ref144 = partialResults.find(function(r) {
26773
26780
  return r.environmentData;
26774
26781
  }) || {}, environmentData = _ref144.environmentData;
@@ -28467,7 +28474,7 @@
28467
28474
  id: 'area-alt',
28468
28475
  selector: 'map area[href]',
28469
28476
  excludeHidden: false,
28470
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag244', 'wcag412', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT6.a' ],
28477
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag244', 'wcag412', 'section508', 'section508.22.a', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.2.4.4', 'EN-9.4.1.2', 'ACT' ],
28471
28478
  actIds: [ 'c487ae' ],
28472
28479
  all: [],
28473
28480
  any: [ {
@@ -28485,7 +28492,7 @@
28485
28492
  }, {
28486
28493
  id: 'aria-allowed-attr',
28487
28494
  matches: 'aria-allowed-attr-matches',
28488
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28495
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28489
28496
  actIds: [ '5c01ea' ],
28490
28497
  all: [ {
28491
28498
  options: {
@@ -28524,7 +28531,7 @@
28524
28531
  id: 'aria-command-name',
28525
28532
  selector: '[role="link"], [role="button"], [role="menuitem"]',
28526
28533
  matches: 'no-naming-method-matches',
28527
- tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'ACT', 'TTv5', 'TT6.a' ],
28534
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
28528
28535
  actIds: [ '97a4e1' ],
28529
28536
  all: [],
28530
28537
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -28552,7 +28559,7 @@
28552
28559
  selector: 'body',
28553
28560
  excludeHidden: false,
28554
28561
  matches: 'is-initiator-matches',
28555
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28562
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28556
28563
  all: [],
28557
28564
  any: [ 'aria-hidden-body' ],
28558
28565
  none: []
@@ -28561,7 +28568,7 @@
28561
28568
  selector: '[aria-hidden="true"]',
28562
28569
  matches: 'aria-hidden-focus-matches',
28563
28570
  excludeHidden: false,
28564
- tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'TTv5', 'TT6.a' ],
28571
+ tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.4.1.2' ],
28565
28572
  actIds: [ '6cfa84' ],
28566
28573
  all: [ 'focusable-modal-open', 'focusable-disabled', 'focusable-not-tabbable' ],
28567
28574
  any: [],
@@ -28570,7 +28577,7 @@
28570
28577
  id: 'aria-input-field-name',
28571
28578
  selector: '[role="combobox"], [role="listbox"], [role="searchbox"], [role="slider"], [role="spinbutton"], [role="textbox"]',
28572
28579
  matches: 'no-naming-method-matches',
28573
- tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'ACT', 'TTv5', 'TT5.c' ],
28580
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
28574
28581
  actIds: [ 'e086e5' ],
28575
28582
  all: [],
28576
28583
  any: [ 'aria-label', 'aria-labelledby', {
@@ -28584,7 +28591,7 @@
28584
28591
  id: 'aria-meter-name',
28585
28592
  selector: '[role="meter"]',
28586
28593
  matches: 'no-naming-method-matches',
28587
- tags: [ 'cat.aria', 'wcag2a', 'wcag111' ],
28594
+ tags: [ 'cat.aria', 'wcag2a', 'wcag111', 'EN-301-549', 'EN-9.1.1.1' ],
28588
28595
  all: [],
28589
28596
  any: [ 'aria-label', 'aria-labelledby', {
28590
28597
  options: {
@@ -28597,7 +28604,7 @@
28597
28604
  id: 'aria-progressbar-name',
28598
28605
  selector: '[role="progressbar"]',
28599
28606
  matches: 'no-naming-method-matches',
28600
- tags: [ 'cat.aria', 'wcag2a', 'wcag111' ],
28607
+ tags: [ 'cat.aria', 'wcag2a', 'wcag111', 'EN-301-549', 'EN-9.1.1.1' ],
28601
28608
  all: [],
28602
28609
  any: [ 'aria-label', 'aria-labelledby', {
28603
28610
  options: {
@@ -28609,7 +28616,7 @@
28609
28616
  }, {
28610
28617
  id: 'aria-required-attr',
28611
28618
  selector: '[role]',
28612
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28619
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28613
28620
  actIds: [ '4e8ab6' ],
28614
28621
  all: [],
28615
28622
  any: [ 'aria-required-attr' ],
@@ -28618,7 +28625,7 @@
28618
28625
  id: 'aria-required-children',
28619
28626
  selector: '[role]',
28620
28627
  matches: 'aria-required-children-matches',
28621
- tags: [ 'cat.aria', 'wcag2a', 'wcag131' ],
28628
+ tags: [ 'cat.aria', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
28622
28629
  actIds: [ 'bc4a75', 'ff89c9' ],
28623
28630
  all: [],
28624
28631
  any: [ {
@@ -28632,7 +28639,7 @@
28632
28639
  id: 'aria-required-parent',
28633
28640
  selector: '[role]',
28634
28641
  matches: 'aria-required-parent-matches',
28635
- tags: [ 'cat.aria', 'wcag2a', 'wcag131' ],
28642
+ tags: [ 'cat.aria', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
28636
28643
  actIds: [ 'ff89c9' ],
28637
28644
  all: [],
28638
28645
  any: [ {
@@ -28645,7 +28652,7 @@
28645
28652
  }, {
28646
28653
  id: 'aria-roledescription',
28647
28654
  selector: '[aria-roledescription]',
28648
- tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'deprecated' ],
28655
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2', 'deprecated' ],
28649
28656
  enabled: false,
28650
28657
  all: [],
28651
28658
  any: [ {
@@ -28659,7 +28666,7 @@
28659
28666
  id: 'aria-roles',
28660
28667
  selector: '[role]',
28661
28668
  matches: 'no-empty-role-matches',
28662
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28669
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28663
28670
  actIds: [ '674b10' ],
28664
28671
  all: [],
28665
28672
  any: [],
@@ -28675,7 +28682,7 @@
28675
28682
  id: 'aria-toggle-field-name',
28676
28683
  selector: '[role="checkbox"], [role="menuitemcheckbox"], [role="menuitemradio"], [role="radio"], [role="switch"], [role="option"]',
28677
28684
  matches: 'no-naming-method-matches',
28678
- tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'ACT', 'TTv5', 'TT5.c' ],
28685
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
28679
28686
  actIds: [ 'e086e5' ],
28680
28687
  all: [],
28681
28688
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -28689,7 +28696,7 @@
28689
28696
  id: 'aria-tooltip-name',
28690
28697
  selector: '[role="tooltip"]',
28691
28698
  matches: 'no-naming-method-matches',
28692
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28699
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28693
28700
  all: [],
28694
28701
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
28695
28702
  options: {
@@ -28714,7 +28721,7 @@
28714
28721
  }, {
28715
28722
  id: 'aria-valid-attr-value',
28716
28723
  matches: 'aria-has-attr-matches',
28717
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28724
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28718
28725
  actIds: [ '6a7281' ],
28719
28726
  all: [ {
28720
28727
  options: [],
@@ -28725,7 +28732,7 @@
28725
28732
  }, {
28726
28733
  id: 'aria-valid-attr',
28727
28734
  matches: 'aria-has-attr-matches',
28728
- tags: [ 'cat.aria', 'wcag2a', 'wcag412' ],
28735
+ tags: [ 'cat.aria', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28729
28736
  actIds: [ '5f99a7' ],
28730
28737
  all: [],
28731
28738
  any: [ {
@@ -28738,7 +28745,7 @@
28738
28745
  selector: 'audio',
28739
28746
  enabled: false,
28740
28747
  excludeHidden: false,
28741
- tags: [ 'cat.time-and-media', 'wcag2a', 'wcag121', 'section508', 'section508.22.a', 'deprecated' ],
28748
+ tags: [ 'cat.time-and-media', 'wcag2a', 'wcag121', 'EN-301-549', 'EN-9.1.2.1', 'section508', 'section508.22.a', 'deprecated' ],
28742
28749
  actIds: [ '2eb176', 'afb423' ],
28743
28750
  all: [],
28744
28751
  any: [],
@@ -28746,7 +28753,7 @@
28746
28753
  }, {
28747
28754
  id: 'autocomplete-valid',
28748
28755
  matches: 'autocomplete-matches',
28749
- tags: [ 'cat.forms', 'wcag21aa', 'wcag135', 'ACT' ],
28756
+ tags: [ 'cat.forms', 'wcag21aa', 'wcag135', 'EN-301-549', 'EN-9.1.3.5', 'ACT' ],
28750
28757
  actIds: [ '73f2c2' ],
28751
28758
  all: [ {
28752
28759
  options: {
@@ -28760,7 +28767,7 @@
28760
28767
  id: 'avoid-inline-spacing',
28761
28768
  selector: '[style]',
28762
28769
  matches: 'is-visible-on-screen-matches',
28763
- tags: [ 'cat.structure', 'wcag21aa', 'wcag1412', 'ACT' ],
28770
+ tags: [ 'cat.structure', 'wcag21aa', 'wcag1412', 'EN-301-549', 'EN-9.1.4.12', 'ACT' ],
28764
28771
  actIds: [ '24afc2', '9e45ec', '78fd32' ],
28765
28772
  all: [ {
28766
28773
  options: {
@@ -28789,7 +28796,7 @@
28789
28796
  id: 'blink',
28790
28797
  selector: 'blink',
28791
28798
  excludeHidden: false,
28792
- tags: [ 'cat.time-and-media', 'wcag2a', 'wcag222', 'section508', 'section508.22.j', 'TTv5', 'TT2.b' ],
28799
+ tags: [ 'cat.time-and-media', 'wcag2a', 'wcag222', 'section508', 'section508.22.j', 'TTv5', 'TT2.b', 'EN-301-549', 'EN-9.2.2.2' ],
28793
28800
  all: [],
28794
28801
  any: [],
28795
28802
  none: [ 'is-on-screen' ]
@@ -28797,7 +28804,7 @@
28797
28804
  id: 'button-name',
28798
28805
  selector: 'button',
28799
28806
  matches: 'no-explicit-name-required-matches',
28800
- tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT6.a' ],
28807
+ tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
28801
28808
  actIds: [ '97a4e1', 'm6b1q3' ],
28802
28809
  all: [],
28803
28810
  any: [ 'button-has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -28813,7 +28820,7 @@
28813
28820
  pageLevel: true,
28814
28821
  matches: 'bypass-matches',
28815
28822
  reviewOnFail: true,
28816
- tags: [ 'cat.keyboard', 'wcag2a', 'wcag241', 'section508', 'section508.22.o', 'TTv5', 'TT9.a' ],
28823
+ tags: [ 'cat.keyboard', 'wcag2a', 'wcag241', 'section508', 'section508.22.o', 'TTv5', 'TT9.a', 'EN-301-549', 'EN-9.2.4.1' ],
28817
28824
  actIds: [ 'cf77f2', '047fe0', 'b40fd1', '3e12e1', 'ye5d6e' ],
28818
28825
  all: [],
28819
28826
  any: [ 'internal-link-present', {
@@ -28865,7 +28872,7 @@
28865
28872
  id: 'color-contrast',
28866
28873
  matches: 'color-contrast-matches',
28867
28874
  excludeHidden: false,
28868
- tags: [ 'cat.color', 'wcag2aa', 'wcag143', 'ACT', 'TTv5', 'TT13.c' ],
28875
+ tags: [ 'cat.color', 'wcag2aa', 'wcag143', 'TTv5', 'TT13.c', 'EN-301-549', 'EN-9.1.4.3', 'ACT' ],
28869
28876
  actIds: [ 'afw4f7', '09o5cg' ],
28870
28877
  all: [],
28871
28878
  any: [ {
@@ -28894,7 +28901,7 @@
28894
28901
  }, {
28895
28902
  id: 'css-orientation-lock',
28896
28903
  selector: 'html',
28897
- tags: [ 'cat.structure', 'wcag134', 'wcag21aa', 'experimental' ],
28904
+ tags: [ 'cat.structure', 'wcag134', 'wcag21aa', 'EN-301-549', 'EN-9.1.3.4', 'experimental' ],
28898
28905
  actIds: [ 'b33eff' ],
28899
28906
  all: [ {
28900
28907
  options: {
@@ -28909,7 +28916,7 @@
28909
28916
  id: 'definition-list',
28910
28917
  selector: 'dl',
28911
28918
  matches: 'no-role-matches',
28912
- tags: [ 'cat.structure', 'wcag2a', 'wcag131' ],
28919
+ tags: [ 'cat.structure', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
28913
28920
  all: [],
28914
28921
  any: [],
28915
28922
  none: [ 'structured-dlitems', {
@@ -28924,7 +28931,7 @@
28924
28931
  id: 'dlitem',
28925
28932
  selector: 'dd, dt',
28926
28933
  matches: 'no-role-matches',
28927
- tags: [ 'cat.structure', 'wcag2a', 'wcag131' ],
28934
+ tags: [ 'cat.structure', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
28928
28935
  all: [],
28929
28936
  any: [ 'dlitem' ],
28930
28937
  none: []
@@ -28932,7 +28939,7 @@
28932
28939
  id: 'document-title',
28933
28940
  selector: 'html',
28934
28941
  matches: 'is-initiator-matches',
28935
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag242', 'ACT', 'TTv5', 'TT12.a' ],
28942
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag242', 'TTv5', 'TT12.a', 'EN-301-549', 'EN-9.2.4.2', 'ACT' ],
28936
28943
  actIds: [ '2779a5' ],
28937
28944
  all: [],
28938
28945
  any: [ 'doc-has-title' ],
@@ -28942,7 +28949,8 @@
28942
28949
  selector: '[id]',
28943
28950
  matches: 'duplicate-id-active-matches',
28944
28951
  excludeHidden: false,
28945
- tags: [ 'cat.parsing', 'wcag2a', 'wcag411' ],
28952
+ tags: [ 'cat.parsing', 'wcag2a-obsolete', 'wcag411', 'deprecated' ],
28953
+ enabled: false,
28946
28954
  actIds: [ '3ea0c8' ],
28947
28955
  all: [],
28948
28956
  any: [ 'duplicate-id-active' ],
@@ -28952,7 +28960,8 @@
28952
28960
  selector: '[id]',
28953
28961
  matches: 'duplicate-id-aria-matches',
28954
28962
  excludeHidden: false,
28955
- tags: [ 'cat.parsing', 'wcag2a', 'wcag411' ],
28963
+ tags: [ 'cat.parsing', 'wcag2a', 'wcag412', 'EN-301-549', 'EN-9.4.1.2' ],
28964
+ reviewOnFail: true,
28956
28965
  actIds: [ '3ea0c8' ],
28957
28966
  all: [],
28958
28967
  any: [ 'duplicate-id-aria' ],
@@ -28962,7 +28971,8 @@
28962
28971
  selector: '[id]',
28963
28972
  matches: 'duplicate-id-misc-matches',
28964
28973
  excludeHidden: false,
28965
- tags: [ 'cat.parsing', 'wcag2a', 'wcag411' ],
28974
+ tags: [ 'cat.parsing', 'wcag2a-obsolete', 'wcag411', 'deprecated' ],
28975
+ enabled: false,
28966
28976
  actIds: [ '3ea0c8' ],
28967
28977
  all: [],
28968
28978
  any: [ 'duplicate-id' ],
@@ -29009,7 +29019,7 @@
29009
29019
  id: 'form-field-multiple-labels',
29010
29020
  selector: 'input, select, textarea',
29011
29021
  matches: 'label-matches',
29012
- tags: [ 'cat.forms', 'wcag2a', 'wcag332', 'TTv5', 'TT5.c' ],
29022
+ tags: [ 'cat.forms', 'wcag2a', 'wcag332', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.3.3.2' ],
29013
29023
  all: [],
29014
29024
  any: [],
29015
29025
  none: [ 'multiple-label' ]
@@ -29017,7 +29027,7 @@
29017
29027
  id: 'frame-focusable-content',
29018
29028
  selector: 'html',
29019
29029
  matches: 'frame-focusable-content-matches',
29020
- tags: [ 'cat.keyboard', 'wcag2a', 'wcag211', 'TTv5', 'TT4.a' ],
29030
+ tags: [ 'cat.keyboard', 'wcag2a', 'wcag211', 'TTv5', 'TT4.a', 'EN-301-549', 'EN-9.2.1.1' ],
29021
29031
  actIds: [ 'akn7bn' ],
29022
29032
  all: [],
29023
29033
  any: [ 'frame-focusable-content' ],
@@ -29025,7 +29035,7 @@
29025
29035
  }, {
29026
29036
  id: 'frame-tested',
29027
29037
  selector: 'html, frame, iframe',
29028
- tags: [ 'cat.structure', 'review-item', 'best-practice' ],
29038
+ tags: [ 'cat.structure', 'best-practice', 'review-item' ],
29029
29039
  all: [ {
29030
29040
  options: {
29031
29041
  isViolation: false
@@ -29038,7 +29048,7 @@
29038
29048
  id: 'frame-title-unique',
29039
29049
  selector: 'frame[title], iframe[title]',
29040
29050
  matches: 'frame-title-has-text-matches',
29041
- tags: [ 'cat.text-alternatives', 'wcag412', 'wcag2a', 'TTv5', 'TT12.d' ],
29051
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag412', 'TTv5', 'TT12.d', 'EN-301-549', 'EN-9.4.1.2' ],
29042
29052
  actIds: [ '4b1c6c' ],
29043
29053
  all: [],
29044
29054
  any: [],
@@ -29048,7 +29058,7 @@
29048
29058
  id: 'frame-title',
29049
29059
  selector: 'frame, iframe',
29050
29060
  matches: 'no-negative-tabindex-matches',
29051
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag412', 'section508', 'section508.22.i', 'TTv5', 'TT12.d' ],
29061
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag412', 'section508', 'section508.22.i', 'TTv5', 'TT12.d', 'EN-301-549', 'EN-9.4.1.2' ],
29052
29062
  actIds: [ 'cae760' ],
29053
29063
  all: [],
29054
29064
  any: [ {
@@ -29070,7 +29080,7 @@
29070
29080
  id: 'hidden-content',
29071
29081
  selector: '*',
29072
29082
  excludeHidden: false,
29073
- tags: [ 'cat.structure', 'experimental', 'review-item', 'best-practice' ],
29083
+ tags: [ 'cat.structure', 'best-practice', 'experimental', 'review-item' ],
29074
29084
  all: [],
29075
29085
  any: [ 'hidden-content' ],
29076
29086
  none: []
@@ -29078,7 +29088,7 @@
29078
29088
  id: 'html-has-lang',
29079
29089
  selector: 'html',
29080
29090
  matches: 'is-initiator-matches',
29081
- tags: [ 'cat.language', 'wcag2a', 'wcag311', 'ACT', 'TTv5', 'TT11.a' ],
29091
+ tags: [ 'cat.language', 'wcag2a', 'wcag311', 'TTv5', 'TT11.a', 'EN-301-549', 'EN-9.3.1.1', 'ACT' ],
29082
29092
  actIds: [ 'b5c3f8' ],
29083
29093
  all: [],
29084
29094
  any: [ {
@@ -29091,7 +29101,7 @@
29091
29101
  }, {
29092
29102
  id: 'html-lang-valid',
29093
29103
  selector: 'html[lang]:not([lang=""]), html[xml\\:lang]:not([xml\\:lang=""])',
29094
- tags: [ 'cat.language', 'wcag2a', 'wcag311', 'ACT', 'TTv5', 'TT11.a' ],
29104
+ tags: [ 'cat.language', 'wcag2a', 'wcag311', 'TTv5', 'TT11.a', 'EN-301-549', 'EN-9.3.1.1', 'ACT' ],
29095
29105
  actIds: [ 'bf051a' ],
29096
29106
  all: [],
29097
29107
  any: [],
@@ -29105,7 +29115,7 @@
29105
29115
  id: 'html-xml-lang-mismatch',
29106
29116
  selector: 'html[lang][xml\\:lang]',
29107
29117
  matches: 'xml-lang-mismatch-matches',
29108
- tags: [ 'cat.language', 'wcag2a', 'wcag311', 'ACT' ],
29118
+ tags: [ 'cat.language', 'wcag2a', 'wcag311', 'EN-301-549', 'EN-9.3.1.1', 'ACT' ],
29109
29119
  actIds: [ '5b7ae0' ],
29110
29120
  all: [ 'xml-lang-mismatch' ],
29111
29121
  any: [],
@@ -29125,7 +29135,7 @@
29125
29135
  id: 'image-alt',
29126
29136
  selector: 'img',
29127
29137
  matches: 'no-explicit-name-required-matches',
29128
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT7.a', 'TT7.b' ],
29138
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'TTv5', 'TT7.a', 'TT7.b', 'EN-301-549', 'EN-9.1.1.1', 'ACT' ],
29129
29139
  actIds: [ '23a2a8' ],
29130
29140
  all: [],
29131
29141
  any: [ 'has-alt', 'aria-label', 'aria-labelledby', {
@@ -29151,7 +29161,7 @@
29151
29161
  id: 'input-button-name',
29152
29162
  selector: 'input[type="button"], input[type="submit"], input[type="reset"]',
29153
29163
  matches: 'no-explicit-name-required-matches',
29154
- tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT5.c' ],
29164
+ tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'section508', 'section508.22.a', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
29155
29165
  actIds: [ '97a4e1' ],
29156
29166
  all: [],
29157
29167
  any: [ 'non-empty-if-present', {
@@ -29170,7 +29180,7 @@
29170
29180
  id: 'input-image-alt',
29171
29181
  selector: 'input[type="image"]',
29172
29182
  matches: 'no-explicit-name-required-matches',
29173
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'wcag412', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT7.a' ],
29183
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'wcag412', 'section508', 'section508.22.a', 'TTv5', 'TT7.a', 'EN-301-549', 'EN-9.1.1.1', 'EN-9.4.1.2', 'ACT' ],
29174
29184
  actIds: [ '59796f' ],
29175
29185
  all: [],
29176
29186
  any: [ {
@@ -29188,7 +29198,7 @@
29188
29198
  }, {
29189
29199
  id: 'label-content-name-mismatch',
29190
29200
  matches: 'label-content-name-mismatch-matches',
29191
- tags: [ 'cat.semantics', 'wcag21a', 'wcag253', 'experimental' ],
29201
+ tags: [ 'cat.semantics', 'wcag21a', 'wcag253', 'EN-301-549', 'EN-9.2.5.3', 'experimental' ],
29192
29202
  actIds: [ '2ee8b8' ],
29193
29203
  all: [],
29194
29204
  any: [ {
@@ -29211,7 +29221,7 @@
29211
29221
  id: 'label',
29212
29222
  selector: 'input, textarea',
29213
29223
  matches: 'label-matches',
29214
- tags: [ 'cat.forms', 'wcag2a', 'wcag412', 'section508', 'section508.22.n', 'ACT', 'TTv5', 'TT5.c' ],
29224
+ tags: [ 'cat.forms', 'wcag2a', 'wcag412', 'section508', 'section508.22.n', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
29215
29225
  actIds: [ 'e086e5' ],
29216
29226
  all: [],
29217
29227
  any: [ 'implicit-label', 'explicit-label', 'aria-label', 'aria-labelledby', {
@@ -29320,7 +29330,7 @@
29320
29330
  selector: 'a[href], [role=link]',
29321
29331
  matches: 'link-in-text-block-matches',
29322
29332
  excludeHidden: false,
29323
- tags: [ 'cat.color', 'wcag2a', 'wcag141', 'TTv5', 'TT13.a' ],
29333
+ tags: [ 'cat.color', 'wcag2a', 'wcag141', 'TTv5', 'TT13.a', 'EN-301-549', 'EN-9.1.4.1' ],
29324
29334
  all: [],
29325
29335
  any: [ {
29326
29336
  options: {
@@ -29333,7 +29343,7 @@
29333
29343
  }, {
29334
29344
  id: 'link-name',
29335
29345
  selector: 'a[href]',
29336
- tags: [ 'cat.name-role-value', 'wcag2a', 'wcag412', 'wcag244', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT6.a' ],
29346
+ tags: [ 'cat.name-role-value', 'wcag2a', 'wcag244', 'wcag412', 'section508', 'section508.22.a', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.2.4.4', 'EN-9.4.1.2', 'ACT' ],
29337
29347
  actIds: [ 'c487ae' ],
29338
29348
  all: [],
29339
29349
  any: [ 'has-visible-text', 'aria-label', 'aria-labelledby', {
@@ -29347,7 +29357,7 @@
29347
29357
  id: 'list',
29348
29358
  selector: 'ul, ol',
29349
29359
  matches: 'no-role-matches',
29350
- tags: [ 'cat.structure', 'wcag2a', 'wcag131' ],
29360
+ tags: [ 'cat.structure', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
29351
29361
  all: [],
29352
29362
  any: [],
29353
29363
  none: [ {
@@ -29361,7 +29371,7 @@
29361
29371
  id: 'listitem',
29362
29372
  selector: 'li',
29363
29373
  matches: 'no-role-matches',
29364
- tags: [ 'cat.structure', 'wcag2a', 'wcag131' ],
29374
+ tags: [ 'cat.structure', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1' ],
29365
29375
  all: [],
29366
29376
  any: [ 'listitem' ],
29367
29377
  none: []
@@ -29369,7 +29379,7 @@
29369
29379
  id: 'marquee',
29370
29380
  selector: 'marquee',
29371
29381
  excludeHidden: false,
29372
- tags: [ 'cat.parsing', 'wcag2a', 'wcag222', 'TTv5', 'TT2.b' ],
29382
+ tags: [ 'cat.parsing', 'wcag2a', 'wcag222', 'TTv5', 'TT2.b', 'EN-301-549', 'EN-9.2.2.2' ],
29373
29383
  all: [],
29374
29384
  any: [],
29375
29385
  none: [ 'is-on-screen' ]
@@ -29393,7 +29403,7 @@
29393
29403
  id: 'meta-refresh',
29394
29404
  selector: 'meta[http-equiv="refresh"][content]',
29395
29405
  excludeHidden: false,
29396
- tags: [ 'cat.time-and-media', 'wcag2a', 'wcag221', 'TTv5', 'TT8.a' ],
29406
+ tags: [ 'cat.time-and-media', 'wcag2a', 'wcag221', 'TTv5', 'TT8.a', 'EN-301-549', 'EN-9.2.2.1' ],
29397
29407
  actIds: [ 'bc659a', 'bisz58' ],
29398
29408
  all: [],
29399
29409
  any: [ {
@@ -29424,7 +29434,7 @@
29424
29434
  selector: 'meta[name="viewport"]',
29425
29435
  matches: 'is-initiator-matches',
29426
29436
  excludeHidden: false,
29427
- tags: [ 'cat.sensory-and-visual-cues', 'wcag2aa', 'wcag144', 'ACT' ],
29437
+ tags: [ 'cat.sensory-and-visual-cues', 'wcag2aa', 'wcag144', 'EN-301-549', 'EN-9.1.4.4', 'ACT' ],
29428
29438
  actIds: [ 'b4f0c3' ],
29429
29439
  all: [],
29430
29440
  any: [ {
@@ -29437,7 +29447,7 @@
29437
29447
  }, {
29438
29448
  id: 'nested-interactive',
29439
29449
  matches: 'nested-interactive-matches',
29440
- tags: [ 'cat.keyboard', 'wcag2a', 'wcag412', 'TTv5', 'TT6.a' ],
29450
+ tags: [ 'cat.keyboard', 'wcag2a', 'wcag412', 'TTv5', 'TT6.a', 'EN-301-549', 'EN-9.4.1.2' ],
29441
29451
  actIds: [ '307n5z' ],
29442
29452
  all: [],
29443
29453
  any: [ 'no-focusable-content' ],
@@ -29448,7 +29458,7 @@
29448
29458
  selector: 'audio[autoplay], video[autoplay]',
29449
29459
  matches: 'no-autoplay-audio-matches',
29450
29460
  reviewOnFail: true,
29451
- tags: [ 'cat.time-and-media', 'wcag2a', 'wcag142', 'ACT', 'TTv5', 'TT2.a' ],
29461
+ tags: [ 'cat.time-and-media', 'wcag2a', 'wcag142', 'TTv5', 'TT2.a', 'EN-301-549', 'EN-9.1.4.2', 'ACT' ],
29452
29462
  actIds: [ '80f0bf' ],
29453
29463
  preload: true,
29454
29464
  all: [ {
@@ -29463,7 +29473,7 @@
29463
29473
  id: 'object-alt',
29464
29474
  selector: 'object[data]',
29465
29475
  matches: 'object-is-loaded-matches',
29466
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a' ],
29476
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'EN-301-549', 'EN-9.1.1.1' ],
29467
29477
  actIds: [ '8fc3b6' ],
29468
29478
  all: [],
29469
29479
  any: [ 'aria-label', 'aria-labelledby', {
@@ -29477,7 +29487,7 @@
29477
29487
  id: 'p-as-heading',
29478
29488
  selector: 'p',
29479
29489
  matches: 'p-as-heading-matches',
29480
- tags: [ 'cat.semantics', 'wcag2a', 'wcag131', 'experimental' ],
29490
+ tags: [ 'cat.semantics', 'wcag2a', 'wcag131', 'EN-301-549', 'EN-9.1.3.1', 'experimental' ],
29481
29491
  all: [ {
29482
29492
  options: {
29483
29493
  margins: [ {
@@ -29537,7 +29547,7 @@
29537
29547
  id: 'role-img-alt',
29538
29548
  selector: '[role=\'img\']:not(img, area, input, object)',
29539
29549
  matches: 'html-namespace-matches',
29540
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT7.a' ],
29550
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'TTv5', 'TT7.a', 'EN-301-549', 'EN-9.1.1.1', 'ACT' ],
29541
29551
  actIds: [ '23a2a8' ],
29542
29552
  all: [],
29543
29553
  any: [ 'aria-label', 'aria-labelledby', {
@@ -29563,7 +29573,7 @@
29563
29573
  id: 'scrollable-region-focusable',
29564
29574
  selector: '*:not(select,textarea)',
29565
29575
  matches: 'scrollable-region-focusable-matches',
29566
- tags: [ 'cat.keyboard', 'wcag2a', 'wcag211', 'TTv5', 'TT4.a' ],
29576
+ tags: [ 'cat.keyboard', 'wcag2a', 'wcag211', 'TTv5', 'TT4.a', 'EN-301-549', 'EN-9.2.1.1' ],
29567
29577
  actIds: [ '0ssw9k' ],
29568
29578
  all: [],
29569
29579
  any: [ 'focusable-content', 'focusable-element' ],
@@ -29571,7 +29581,7 @@
29571
29581
  }, {
29572
29582
  id: 'select-name',
29573
29583
  selector: 'select',
29574
- tags: [ 'cat.forms', 'wcag2a', 'wcag412', 'section508', 'section508.22.n', 'ACT', 'TTv5', 'TT5.c' ],
29584
+ tags: [ 'cat.forms', 'wcag2a', 'wcag412', 'section508', 'section508.22.n', 'TTv5', 'TT5.c', 'EN-301-549', 'EN-9.4.1.2', 'ACT' ],
29575
29585
  actIds: [ 'e086e5' ],
29576
29586
  all: [],
29577
29587
  any: [ 'implicit-label', 'explicit-label', 'aria-label', 'aria-labelledby', {
@@ -29584,7 +29594,7 @@
29584
29594
  }, {
29585
29595
  id: 'server-side-image-map',
29586
29596
  selector: 'img[ismap]',
29587
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag211', 'section508', 'section508.22.f', 'TTv5', 'TT4.a' ],
29597
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag211', 'section508', 'section508.22.f', 'TTv5', 'TT4.a', 'EN-301-549', 'EN-9.2.1.1' ],
29588
29598
  all: [],
29589
29599
  any: [],
29590
29600
  none: [ 'exists' ]
@@ -29600,7 +29610,7 @@
29600
29610
  id: 'svg-img-alt',
29601
29611
  selector: '[role="img"], [role="graphics-symbol"], svg[role="graphics-document"]',
29602
29612
  matches: 'svg-namespace-matches',
29603
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'ACT', 'TTv5', 'TT7.a' ],
29613
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag111', 'section508', 'section508.22.a', 'TTv5', 'TT7.a', 'EN-301-549', 'EN-9.1.1.1', 'ACT' ],
29604
29614
  actIds: [ '7d6734' ],
29605
29615
  all: [],
29606
29616
  any: [ 'svg-non-empty-title', 'aria-label', 'aria-labelledby', {
@@ -29628,7 +29638,7 @@
29628
29638
  id: 'table-fake-caption',
29629
29639
  selector: 'table',
29630
29640
  matches: 'data-table-matches',
29631
- tags: [ 'cat.tables', 'experimental', 'wcag2a', 'wcag131', 'section508', 'section508.22.g' ],
29641
+ tags: [ 'cat.tables', 'experimental', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'EN-301-549', 'EN-9.1.3.1' ],
29632
29642
  all: [ 'caption-faked' ],
29633
29643
  any: [],
29634
29644
  none: []
@@ -29637,7 +29647,7 @@
29637
29647
  selector: '*',
29638
29648
  enabled: false,
29639
29649
  matches: 'widget-not-inline-matches',
29640
- tags: [ 'wcag22aa', 'wcag258', 'cat.sensory-and-visual-cues' ],
29650
+ tags: [ 'cat.sensory-and-visual-cues', 'wcag22aa', 'wcag258' ],
29641
29651
  all: [],
29642
29652
  any: [ {
29643
29653
  options: {
@@ -29655,7 +29665,7 @@
29655
29665
  id: 'td-has-header',
29656
29666
  selector: 'table',
29657
29667
  matches: 'data-table-large-matches',
29658
- tags: [ 'cat.tables', 'experimental', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', 'TT14.b' ],
29668
+ tags: [ 'cat.tables', 'experimental', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', 'TT14.b', 'EN-301-549', 'EN-9.1.3.1' ],
29659
29669
  all: [ 'td-has-header' ],
29660
29670
  any: [],
29661
29671
  none: []
@@ -29663,7 +29673,7 @@
29663
29673
  id: 'td-headers-attr',
29664
29674
  selector: 'table',
29665
29675
  matches: 'table-or-grid-role-matches',
29666
- tags: [ 'cat.tables', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', 'TT14.b' ],
29676
+ tags: [ 'cat.tables', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', 'TT14.b', 'EN-301-549', 'EN-9.1.3.1' ],
29667
29677
  actIds: [ 'a25f45' ],
29668
29678
  all: [ 'td-headers-attr' ],
29669
29679
  any: [],
@@ -29672,7 +29682,7 @@
29672
29682
  id: 'th-has-data-cells',
29673
29683
  selector: 'table',
29674
29684
  matches: 'data-table-matches',
29675
- tags: [ 'cat.tables', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', '14.b' ],
29685
+ tags: [ 'cat.tables', 'wcag2a', 'wcag131', 'section508', 'section508.22.g', 'TTv5', 'TT14.b', 'EN-301-549', 'EN-9.1.3.1' ],
29676
29686
  actIds: [ 'd0f69e' ],
29677
29687
  all: [ 'th-has-data-cells' ],
29678
29688
  any: [],
@@ -29680,7 +29690,7 @@
29680
29690
  }, {
29681
29691
  id: 'valid-lang',
29682
29692
  selector: '[lang]:not(html), [xml\\:lang]:not(html)',
29683
- tags: [ 'cat.language', 'wcag2aa', 'wcag312', 'ACT', 'TTv5', 'TT11.b' ],
29693
+ tags: [ 'cat.language', 'wcag2aa', 'wcag312', 'TTv5', 'TT11.b', 'EN-301-549', 'EN-9.3.1.2', 'ACT' ],
29684
29694
  actIds: [ 'de46e4' ],
29685
29695
  all: [],
29686
29696
  any: [],
@@ -29693,7 +29703,7 @@
29693
29703
  }, {
29694
29704
  id: 'video-caption',
29695
29705
  selector: 'video',
29696
- tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag122', 'section508', 'section508.22.a', 'TTv5', 'TT17.a' ],
29706
+ tags: [ 'cat.text-alternatives', 'wcag2a', 'wcag122', 'section508', 'section508.22.a', 'TTv5', 'TT17.a', 'EN-301-549', 'EN-9.1.2.2' ],
29697
29707
  actIds: [ 'eac66b' ],
29698
29708
  all: [],
29699
29709
  any: [],