Skip to content

Commit

Permalink
feat(wcag-2-2): Deprecate parsing assessment for WCAG 2.2 (#7068)
Browse files Browse the repository at this point in the history
This commit adds a "Deprecated for WCAG 2.2" notice to the "parsing"
assessment.

Part of the WCAG 2.2 feature (available internally on Azure DevOps).

Co-authored-by: Madalyn <[email protected]>
  • Loading branch information
codeofdusk and madalynrose authored Nov 2, 2023
1 parent 238370f commit ea73258
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/common/types/store-data/guidance-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export const guidanceTags = {
id: 'BEST_PRACTICE',
displayText: 'Best Practice',
},
WCAG_2_2_DEPRECATION: {
id: 'WCAG_2_2',
displayText: 'Deprecated for WCAG 2.2',
},
};

export interface GuidanceLink {
Expand Down
2 changes: 1 addition & 1 deletion src/content/guideline-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ export const guidelineMetadata = {
linkName: 'WCAG 4.1.1',
linkTag: 'WCAG_4_1_1',
link: 'https://www.w3.org/WAI/WCAG21/Understanding/parsing.html',
guidanceTags: [],
guidanceTags: [guidanceTags.WCAG_2_2_DEPRECATION],
},
'WCAG 4.1.2': {
number: '4.1.2',
Expand Down

0 comments on commit ea73258

Please sign in to comment.