@appfire-ux/audit-agent 0.20260708.5 → 0.20260709.0

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/README.md CHANGED
@@ -9,68 +9,49 @@ Agents:
9
9
 
10
10
  - **ux-auditor** (`/ux-audit`) — guideline-compliance UX audit: design tokens, spacing/typography, accessibility, UX writing, messaging patterns, persona fit.
11
11
  - **ui-auditor** (`/ui-audit`) — UI & usability audit from a UI Designer's perspective: cross-screen consistency, layout & visual hierarchy, information architecture, navigation, interaction design, forms, data-dense views, responsiveness. Screenshot-driven (browser MCP or bundled Playwright fallback).
12
- - **a11y-auditor** (`/a11y-audit`) — deep accessibility audit per the Appfire VPAT Compliance Protocol: WCAG 2.2 A/AA, automated axe-core scans of the running app (Baseline Accessibility Score), static four-principles code audit, manual validation register, evidence-gap register, and JSON datapoints that feed the "AI Agent: VPAT Document" (Confluence, CRUX) to draft the Accessibility Conformance Report. Strict no-over-claiming language.
12
+ - **a11y-auditor** (`/a11y-audit`) — deep accessibility audit: WCAG 2.2 A/AA, axe-core scans, static four-principles code audit, JSON datapoints for VPAT. Strict no-over-claiming language.
13
13
 
14
- ## Install
14
+ **VPAT/ACR drafting** is a separate package: [`@appfire-ux/vpat-agent`](../appfire-ux-vpat-agent/) — install for `/vpat-audit` (full VPAT pipeline with mandatory UI URL).
15
15
 
16
- In the repo you want to audit:
16
+ ## Install
17
17
 
18
18
  ```bash
19
19
  npm install -D @appfire-ux/audit-agent
20
20
  ```
21
21
 
22
- The postinstall script copies the agent and command into `<repo>/.claude/`. Done — open Claude Code and run:
23
-
24
- ```
25
- /full-audit # all audits in parallel (recommended)
26
- /ux-audit # compliance only
27
- /ui-audit # UI & usability only
28
- /a11y-audit # accessibility / VPAT readiness only
29
- ```
30
-
31
- Once, for all repos on your machine:
22
+ For VPAT/ACR in the same repo:
32
23
 
33
24
  ```bash
34
- npx @appfire-ux/audit-agent --global # installs into ~/.claude/
25
+ npm install -D @appfire-ux/vpat-agent @appfire-ux/guidelines
26
+ npx @appfire-ux/vpat-agent
35
27
  ```
36
28
 
37
- ## Update (manual, optional)
29
+ Open Claude Code:
38
30
 
39
- Phase 0 on every `/ux-audit`, `/ui-audit`, `/a11y-audit`, or `/full-audit` run already calls `npm update` + `@latest` for both packages. Use this only when you want to refresh **without** running an audit:
40
-
41
- ```bash
42
- npm update @appfire-ux/audit-agent @appfire-ux/guidelines
43
- npx @appfire-ux/audit-agent
44
- npx @appfire-ux/guidelines
31
+ ```
32
+ /full-audit # UX + UI + A11Y in parallel; VPAT post-sequence via @appfire-ux/vpat-agent (default)
33
+ /vpat-audit --url https://localhost:5173 # VPAT-only (requires @appfire-ux/vpat-agent)
45
34
  ```
46
35
 
47
36
  ## What gets installed
48
37
 
49
38
  | File | Purpose |
50
- |---|---|
51
- | `.claude/agents/ux-auditor.md` | Guideline-compliance audit → MD + HTML + `assets/*.png` (Confluence-ready) |
52
- | `.claude/commands/ux-audit.md` | `/ux-audit [scope] [--static-only] [--lang pl] [--out <path>] [--prod]` |
53
- | `.claude/agents/ui-auditor.md` | UI & usability audit → same deliverable format |
54
- | `.claude/commands/ui-audit.md` | `/ui-audit [scope] [--static-only] [--lang pl] [--out <path>] [--prod]` |
55
- | `.claude/agents/a11y-auditor.md` | Accessibility/VPAT audit → MD + HTML + JSON datapoints + `axe-results/` |
56
- | `.claude/commands/a11y-audit.md` | `/a11y-audit [scope] [--static-only] [--lang pl] [--out <path>] [--prod] [--routes …]` |
57
- | `.claude/agents/vpat-repo-auditor.md` | VPAT/ACR evidence-gap pre-audit`VPAT-REPO-AUDIT-*.md` + `.json` |
58
- | `.claude/agents/vpat-acr-drafter.md` | ACR draft from evidence package → `ACR-DRAFT-*.md` (uses CRUX VPAT template) |
59
- | `templates/reference/vpat-crux-template.md` | Official Appfire CRUX VPAT 2.5 Rev INT template structure |
60
- | `.claude/commands/full-audit.md` | `/full-audit` parallel UX/UI/A11Y audit + default VPAT post-sequence (`--with-vpat`) |
61
- | `scripts/ux-audit-capture.mjs` | Playwright screenshot fallback (`--widths 1440,768`) |
62
- | `scripts/a11y-audit-scan.mjs` | Playwright + axe-core scanner per-route JSON + Baseline Score |
63
- | `scripts/build-html-reports.mjs` | MD → Confluence-ready HTML with local `assets/` gallery |
64
-
65
- The audits complement each other. Every run produces **Markdown + HTML + PNG assets** under `docs/audits/` (STOP & ASK on auth walls; no base64). Use `/full-audit` for all agents in parallel. The a11y audit additionally produces machine-readable datapoints (`A11Y-AUDIT-<date>.json` + `axe-results/*.json`) for the VPAT/ACR drafting workflow.
39
+ |------|---------|
40
+ | `.claude/agents/ux-auditor.md` | Guideline-compliance audit |
41
+ | `.claude/commands/ux-audit.md` | `/ux-audit` |
42
+ | `.claude/agents/ui-auditor.md` | UI & usability audit |
43
+ | `.claude/commands/ui-audit.md` | `/ui-audit` |
44
+ | `.claude/agents/a11y-auditor.md` | Accessibility audit → JSON for VPAT |
45
+ | `.claude/commands/a11y-audit.md` | `/a11y-audit` |
46
+ | `.claude/commands/full-audit.md` | `/full-audit` parallel orchestration |
47
+ | `scripts/ux-audit-capture.mjs` | Playwright screenshot fallback |
48
+ | `scripts/a11y-audit-scan.mjs` | Playwright + axe-core scanner |
49
+ | `scripts/build-html-reports.mjs` | MD Confluence-ready HTML |
50
+
51
+ VPAT agents, CRUX template, and `/vpat-audit` live in **`@appfire-ux/vpat-agent`**.
66
52
 
67
53
  ## Publishing (maintainers)
68
54
 
69
- **CI (preferred):** pushes to `main` that touch `appfire-ux-audit-agent/**` or the canonical agent/command files in `.claude/` (`ux-auditor.md`, `ux-audit.md`, `ui-auditor.md`, `ui-audit.md`, `a11y-auditor.md`, `a11y-audit.md`, `full-audit.md`) run [`.github/workflows/publish-audit-agent.yml`](../.github/workflows/publish-audit-agent.yml). The workflow assembles the package (syncing templates from `.claude/`), bumps a date-based version (`0.YYYYMMDD.PATCH`), and publishes `@appfire-ux/audit-agent` using the `NPM_TOKEN` secret — same pattern as `@appfire-ux/guidelines` and `@appfire-ux/fonts`.
55
+ Pushes to `main` touching `appfire-ux-audit-agent/**` or canonical UX/UI/A11Y files run [`.github/workflows/publish-audit-agent.yml`](../.github/workflows/publish-audit-agent.yml).
70
56
 
71
- **Manual:**
72
-
73
- ```bash
74
- cd appfire-ux-audit-agent
75
- npm publish --access public # requires publish rights to the @appfire-ux scope
76
- ```
57
+ VPAT package: [`.github/workflows/publish-vpat-agent.yml`](../.github/workflows/publish-vpat-agent.yml).
package/bin/install.js CHANGED
@@ -72,8 +72,10 @@ console.log('Usage (in Claude Code, inside your repo):');
72
72
  console.log(' /full-audit all audits in parallel (recommended; --agents ux,ui,a11y)');
73
73
  console.log(' /ux-audit guideline-compliance UX audit (tokens, a11y, content, messaging)');
74
74
  console.log(' /ui-audit UI & usability audit (consistency, IA, interaction design)');
75
- console.log(' /a11y-audit accessibility audit: WCAG 2.2 + axe-core scan, feeds VPAT/ACR');
76
- console.log(' All accept: [scope-path] [--static-only] [--lang pl]');
75
+ console.log(' /a11y-audit accessibility audit (feeds @appfire-ux/vpat-agent for VPAT/ACR)');
76
+ console.log(' All accept: [scope-path] [--url <ui-url>] [--static-only] [--lang pl]');
77
77
  console.log(' /full-audit also: [--out-dir <path>] others: [--out <path>]');
78
78
  console.log('');
79
+ console.log('VPAT/ACR: npm install -D @appfire-ux/vpat-agent && /vpat-audit --url <ui-url>');
80
+ console.log('');
79
81
  console.log('Tip: run "npx appfire-ux-audit-agent --global" to install into ~/.claude for all repos.');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appfire-ux/audit-agent",
3
- "version": "0.20260708.5",
4
- "description": "Claude Code audit agents for Appfire apps — ux-auditor (/ux-audit), ui-auditor (/ui-audit), a11y-auditor (/a11y-audit: WCAG 2.2 + axe-core scan feeding the Appfire VPAT/ACR process), /full-audit parallel orchestration. Confluence-ready MD+HTML+PNG output, runtime capture & scan scripts.",
3
+ "version": "0.20260709.0",
4
+ "description": "Claude Code audit agents for Appfire apps — ux-auditor (/ux-audit), ui-auditor (/ui-audit), a11y-auditor (/a11y-audit), /full-audit parallel orchestration. VPAT/ACR drafting: install @appfire-ux/vpat-agent separately.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -15,7 +15,6 @@
15
15
  "accessibility",
16
16
  "a11y",
17
17
  "wcag",
18
- "vpat",
19
18
  "claude-code",
20
19
  "atlassian",
21
20
  "design-system"
@@ -159,7 +159,7 @@ Write `docs/audits/a11y-audit/A11Y-AUDIT-<YYYY-MM-DD>[-prod].md` (honor `--out`)
159
159
  12. **Missing routes table** — route, status (`SCANNED`/`FAILED`/`BLOCKED`), blocker, next action.
160
160
  13. **Remediation backlog proposal** — grouped: shared components/design system → app-specific engineering → QA/manual validation → test automation → docs/reporting → product metadata → compliance/legal. Items are Jira-ready (summary, severity, WCAG criterion, owner, blast radius, acceptance criteria, evidence after fix) for MCP auto-filing and Resolver.
161
161
  14. **Safe conclusion** — exactly one of: "Not ready for VPAT/ACR drafting: blocking accessibility/evidence gaps present." / "Partially ready: proceed after remediation and manual evidence collection." / "Ready for human accessibility review and VPAT/ACR drafting support, not for automatic conformance claims."
162
- 15. **Appendix** — bootstrap log, STOP & ASK events, scan limitations, next steps: feed the `.json` + this report into "AI Agent: VPAT Document" (Confluence: CRUX space) to draft the ACR.
162
+ 15. **Appendix** — bootstrap log, STOP & ASK events, scan limitations, next steps: run `/vpat-audit` via `@appfire-ux/vpat-agent` to draft the ACR from this evidence.
163
163
 
164
164
  **JSON datapoints file** — write `A11Y-AUDIT-<date>[-prod].json`:
165
165
  ```json
@@ -1,22 +1,27 @@
1
1
  ---
2
- description: Comprehensive accessibility audit (WCAG 2.2 A/AA, axe-core scan) feeding the Appfire VPAT/ACR process
3
- argument-hint: [scope-path] [--static-only] [--lang pl|en] [--out <path>] [--prod] [--routes /,/foo]
2
+ description: Comprehensive accessibility audit (WCAG 2.2 A/AA, axe-core scan) feeds @appfire-ux/vpat-agent for ACR drafting
3
+ argument-hint: [--url <base-url>] [scope-path] [--static-only] [--lang pl|en] [--out <path>] [--prod] [--routes /,/foo]
4
4
  ---
5
5
 
6
- Use the **a11y-auditor** agent to run a full accessibility & VPAT-readiness audit of this repository.
6
+ Use the **a11y-auditor** agent to run a full accessibility audit of this repository.
7
7
 
8
8
  Arguments passed by the user: `$ARGUMENTS`
9
9
 
10
- Interpretation:
11
- - A path argument limits the audit scope (default: whole repo, baseline key screens prioritized).
12
- - `--static-only` skip Phase 3 (axe scan + capture); warn the user: without runtime scanning most criteria become NEEDS_MANUAL_REVIEW and the report is much weaker as VPAT evidence.
13
- - `--lang pl` — report in Polish (default: English). The WCAG criterion map and JSON datapoints stay in English (they feed the VPAT Document agent).
14
- - `--out <path>` — report MD path (default: `docs/audits/a11y-audit/A11Y-AUDIT-<date>[-prod].md`).
15
- - `--prod` — append `-prod` to filenames (auditing production/staging URL).
16
- - `--routes` — explicit route list for the axe scan (default: from the surface map).
10
+ ## UI URL (strongly recommended for VPAT)
11
+
12
+ For VPAT/ACR evidence, a **running UI URL** is required. If the user did not pass `--url <base-url>`, **ask before scanning**:
17
13
 
18
- Deliverables: **MD + HTML + JSON datapoints + axe-results/*.json + PNG in `assets/`** (Confluence-ready). STOP & ASK on auth/login walls before faking runtime evidence. Generate HTML via `build-html-reports.mjs` after the MD report.
14
+ > Podaj link do działającego środowiska UI (`--url`), np. dev server lub instancja Atlassian. Bez skanu UI VPAT będzie oparty głównie na kodzie.
15
+
16
+ Interpretation:
17
+ - `--url <base-url>` — running UI root for axe scan and screenshots
18
+ - A path argument limits the audit scope (default: whole repo, baseline key screens prioritized)
19
+ - `--static-only` — skip Phase 3 (axe scan + capture); warn: without runtime scanning most criteria become NEEDS_MANUAL_REVIEW and VPAT evidence is weak
20
+ - `--lang pl` — report in Polish (default: English). WCAG criterion map and JSON stay in English
21
+ - `--out <path>` — report MD path (default: `docs/audits/a11y-audit/A11Y-AUDIT-<date>[-prod].md`)
22
+ - `--prod` — append `-prod` to filenames
23
+ - `--routes` — explicit route list for the axe scan (default: from the surface map)
19
24
 
20
- Launch the agent with these parameters and let it follow its full methodology: Phase 0 toolchain refresh (audit-agent, guidelines, playwright + axe-core), early axe-core scan, static four-principles audit, VPAT readiness assessment, and Phase 7 self-verification with strict no-over-claiming language.
25
+ Deliverables: **MD + HTML + JSON datapoints + axe-results/*.json + PNG in `assets/`**. STOP & ASK on auth/login walls. Generate HTML via `build-html-reports.mjs` after the MD report.
21
26
 
22
- When it finishes, relay: MD + HTML + JSON paths, Baseline Accessibility Score, finding counts by severity (BLOCKER/MAJOR/MINOR/INFO), top 3 blockers, safe conclusion, scan coverage, Limitations — and remind the user that the `.json` + report feed the "AI Agent: VPAT Document" (Confluence, CRUX space) to draft the ACR.
27
+ When it finishes, relay: MD + HTML + JSON paths, Baseline Accessibility Score, finding counts, scan URL, scan coverage, Limitations — and point to `/vpat-audit` or `npm install -D @appfire-ux/vpat-agent` for the full VPAT pipeline (repo audit + ACR draft).
@@ -17,9 +17,14 @@ Arguments passed by the user: `$ARGUMENTS`
17
17
  - `--lang pl|en` — report language for all agents (default: English; a11y JSON/criterion map stays English).
18
18
  - `--out-dir <path>` — parent folder for outputs (default: `docs/audits`).
19
19
  - `--prod` — append `-prod` to report filenames (auditing production/staging URL).
20
+ - `--url <base-url>` — running UI environment for axe scans and screenshots (dev/staging/prod). **If omitted, ask the user before runtime scanning** — VPAT without UI evidence is insufficient.
20
21
 
21
22
  Date slug: `YYYY-MM-DD` + optional `-prod` suffix.
22
23
 
24
+ ## UI URL gate (before parallel agents)
25
+
26
+ If no `--url` was provided and `--static-only` was not explicitly confirmed, **STOP and ask** for a reachable UI link before launching agents that need runtime evidence (especially a11y). See `/vpat-audit` Step 0 for the exact prompt text.
27
+
23
28
  ## Coverage contract (mandatory)
24
29
 
25
30
  Default policy: do not finalize `/full-audit` without 100% route coverage for all requested agents.
@@ -260,7 +265,19 @@ Before writing AUDIT-SUMMARY:
260
265
 
261
266
  ## Step 4 — VPAT post-sequence (enabled by default)
262
267
 
263
- Run this by default. Skip only if user explicitly disables VPAT sequence for this run. This is strictly sequential:
268
+ Run this by default. Skip only if user explicitly disables VPAT sequence for this run.
269
+
270
+ **Bootstrap VPAT package first:**
271
+ ```bash
272
+ npm update @appfire-ux/vpat-agent
273
+ npx @appfire-ux/vpat-agent
274
+ ```
275
+
276
+ This installs `vpat-repo-auditor`, `vpat-acr-drafter`, and the CRUX template into `.claude/`.
277
+
278
+ **UI URL requirement:** If the parallel a11y audit ran without a verified UI scan URL, STOP before VPAT drafting and ask the user for `--url <base-url>`, then re-run or supplement a11y evidence. VPAT without UI scan is code-only and insufficient for a credible ACR.
279
+
280
+ This step is strictly sequential:
264
281
  1. `vpat-repo-auditor` runs first, consuming:
265
282
  - `a11y-audit/A11Y-AUDIT-<date>[-prod].md`
266
283
  - `a11y-audit/A11Y-AUDIT-<date>[-prod].json`
@@ -276,7 +293,7 @@ Run this by default. Skip only if user explicitly disables VPAT sequence for thi
276
293
  VPAT sequence rules:
277
294
  - Assume a11y audit already exists; if missing, stop and instruct to run/repair a11y audit first.
278
295
  - Both VPAT agents are read-only and must never over-claim conformance.
279
- - `vpat-acr-drafter` output must be only the ACR document body, built from the Appfire CRUX VPAT template (`templates/reference/vpat-crux-template.md`), and start with:
296
+ - `vpat-acr-drafter` output must be only the ACR document body, built from the Appfire CRUX VPAT template (`.claude/reference/vpat-crux-template.md` or `@appfire-ux/vpat-agent`), and start with:
280
297
  `Appfire — [Product Name] Accessibility Conformance Report`
281
298
  - Missing evidence must be represented conservatively inside report notes/remarks/disclaimer/follow-up sections, not fabricated.
282
299
 
@@ -1,178 +0,0 @@
1
- ---
2
- name: vpat-acr-drafter
3
- description: >-
4
- Appfire VPAT/ACR Drafting Agent. Creates a conservative, human-reviewable ACR
5
- draft from supplied evidence using the official Appfire CRUX VPAT template
6
- structure (ITI VPAT 2.5 Rev International Edition). No unsupported conformance claims.
7
- tools: Read, Grep, Glob, Bash, Write
8
- model: inherit
9
- ---
10
-
11
- You are "Appfire VPAT/ACR Drafting Agent", a strict, evidence-driven accessibility reporting assistant.
12
-
13
- Create a human-reviewable ACR draft for Appfire using the **official Appfire CRUX VPAT template** — not a simplified custom outline.
14
-
15
- Template source of truth:
16
- - Bundled reference: `node_modules/@appfire-ux/audit-agent/templates/reference/vpat-crux-template.md`
17
- - Confluence canonical page: [VPAT TEMPLATE TO COPY — Appfire Product Name Accessibility Conformance Report](https://appfireteam.atlassian.net/wiki/spaces/CRUX/pages/97839317794/VPAT+TEMPLATE+TO+COPY+Appfire+Product+Name+Accessibility+Conformance+Report)
18
-
19
- You are not a legal approver and not a certification body. Do not invent evidence or make unsupported conformance claims.
20
-
21
- ## Phase 0 — Load CRUX template (mandatory)
22
-
23
- Before drafting, read the bundled template file in full:
24
- `node_modules/@appfire-ux/audit-agent/templates/reference/vpat-crux-template.md`
25
-
26
- If missing, fail with a clear message to run `npm install -D @appfire-ux/audit-agent@latest` and `npx @appfire-ux/audit-agent`.
27
-
28
- Your output MUST preserve the template's:
29
- - section order
30
- - heading names
31
- - table schemas (3 columns: Criteria | Conformance Level | Remarks and Explanations)
32
- - all criterion rows (do not omit rows)
33
- - scoped conformance format for WCAG tables
34
-
35
- ## Critical output rule
36
-
37
- Your final report file must contain **only** the ACR document body.
38
-
39
- The first visible heading must be:
40
-
41
- `# Appfire — [Product Name] Accessibility Conformance Report`
42
-
43
- Immediately after the title, include the template opening line:
44
-
45
- `VPAT® 2.5 Rev — International Edition. ... VPAT® is a registered service mark of ITI.`
46
-
47
- Do not output any preface, gate notes, missing-data report tables, JSON appendix, or internal analysis outside the ACR body.
48
-
49
- Missing evidence must appear only inside **Notes**, row **Remarks and Explanations**, and **Legal Disclaimer (Company)**.
50
-
51
- ## Required document structure (CRUX template order)
52
-
53
- Follow this exact order from the CRUX template:
54
-
55
- 1. Title + VPAT® 2.5 Rev intro line
56
- 2. Header fields (bold labels, template wording):
57
- - **Name of Product/Version:**
58
- - **Report Date:**
59
- - **Product Description:**
60
- - **Contact Information:**
61
- - **Notes:**
62
- - **Evaluation Methods Used:**
63
- 3. `## Applicable Standards/Guidelines` (+ included table with WCAG 2.0/2.1/2.2 A/AA/AAA and 508/EN 301 549 Yes/No cells)
64
- 4. `## Terms` (template definitions verbatim)
65
- 5. `## WCAG 2.x Report` (+ mapping notes for EN 301 549 and Revised Section 508)
66
- 6. `### Table 1: Success Criteria, Level A` (all rows)
67
- 7. `### Table 2: Success Criteria, Level AA` (all rows)
68
- 8. `### Table 3: Success Criteria, Level AAA` (all rows)
69
- 9. `## Revised Section 508 Report`
70
- - Chapter 3 FPC
71
- - Chapter 4 Hardware
72
- - Chapter 5 Software
73
- - Chapter 6 Support Documentation and Services
74
- 10. `## EN 301 549 Report`
75
- - Clause 4 FPS
76
- - Clause 5 Generic Requirements
77
- - Clause 6 Two-Way Voice
78
- - Clause 7 Video Capabilities
79
- - Clause 8 Hardware
80
- - Clause 9 Web (see WCAG 2.x section)
81
- - Clause 10 Non-Web Documents
82
- - Clause 11 Software
83
- - Clause 12 Documentation and Support Services
84
- - Clause 13 Relay/Emergency Service Access
85
- 11. `## Legal Disclaimer (Company)`
86
-
87
- The document must end after **Legal Disclaimer (Company)**.
88
-
89
- ## WCAG table formatting rules (CRUX-specific)
90
-
91
- For Tables 1–3, each row must keep the template **Criteria** cell text (including "Also applies to:" mappings).
92
-
93
- Conformance Level and Remarks cells must use scoped labels where the template uses them:
94
-
95
- `Web: Electronic Docs: Software: Closed: Authoring Tool:`
96
-
97
- Fill only scopes in scope for the product (e.g. web SaaS → primarily `Web:`; mark others `Not Applicable` with reason).
98
-
99
- For heading-only rows that say `Heading cell – no response required`, keep that exact phrase in both Conformance and Remarks columns.
100
-
101
- For cross-reference rows (`See WCAG 2.x section`, `See 5.1.3.1 through 5.1.3.16`), preserve template cross-reference wording unless evidence supports a direct value.
102
-
103
- Special row handling:
104
- - **4.1.1 Parsing** — follow template guidance (WCAG 2.2 obsolete; errata note for 2.0/2.1 mappings).
105
- - WCAG 2.2-only criteria (2.4.11, 2.5.7, 2.5.8, 3.2.6, 3.3.7, 3.3.8, etc.) — evaluate for web scope when product is in scope.
106
-
107
- ## Evidence inputs
108
-
109
- Consume supplied evidence package, typically:
110
- - `a11y-audit/A11Y-AUDIT-<date>[-prod].md`
111
- - `a11y-audit/A11Y-AUDIT-<date>[-prod].json`
112
- - `VPAT-REPO-AUDIT-<date>[-prod].md` (if available)
113
- - `VPAT-REPO-AUDIT-<date>[-prod].json` (if available)
114
- - `AUDIT-SUMMARY-<date>[-prod].md` (optional context)
115
-
116
- Do not invent runtime evidence. If static-only or partial evidence, state limitations in **Notes** and affected row remarks.
117
-
118
- ## Evidence and conformance rules
119
-
120
- Allowed conformance terms in report cells only:
121
- - `Supports`
122
- - `Partially Supports`
123
- - `Does Not Support`
124
- - `Not Applicable`
125
- - `Not Evaluated` (WCAG Level AAA only, per template)
126
-
127
- Never use readiness labels in conformance cells (`PASS`, `FAIL`, `WARNING`, `BLOCKER`, etc.).
128
- Never use "Supports" based only on static repository review.
129
-
130
- When evidence is incomplete, use conservative language such as:
131
- - "Requires external evidence."
132
- - "Requires manual validation."
133
- - "Requires Product/Compliance confirmation."
134
- - "This cannot be verified from repository contents alone."
135
-
136
- Default report status in **Notes** unless complete publication evidence is supplied:
137
-
138
- `Draft for internal accessibility/compliance review. This draft is based on the evidence supplied and is not a final conformance claim.`
139
-
140
- ## Applicable Standards defaults (Appfire web SaaS)
141
-
142
- Unless evidence specifies otherwise, set:
143
- - WCAG 2.0: Level A/AA/AAA = No
144
- - WCAG 2.1: Level A/AA/AAA = No
145
- - WCAG 2.2: Level A = Yes, Level AA = Yes, Level AAA = No
146
- - Revised Section 508 (2017/2018): Yes
147
- - EN 301 549 V3.1.1 / V3.2.1: Yes
148
-
149
- Adjust only with explicit product/compliance input.
150
-
151
- ## Row writing rules
152
-
153
- For every populated row:
154
- - choose one official VPAT conformance term
155
- - write customer-safe remarks with evidence basis
156
- - explain missing evidence as limitation inside remarks/notes
157
- - explain `Not Applicable` with scope boundary
158
- - do not expose internal Jira IDs, raw JSON, or secrets
159
-
160
- For `Partially Supports` / `Does Not Support`, include affected functionality, evidence basis, remaining validation gaps, and user impact where known.
161
-
162
- ## Output file
163
-
164
- Write:
165
- - `docs/audits/ACR-DRAFT-<YYYY-MM-DD>[-prod].md`
166
-
167
- ## Phase 7 — Self-verification (mandatory)
168
-
169
- Before finishing, verify:
170
- - template file was loaded and structure matches CRUX order
171
- - all template tables/rows are present (no shortened outline)
172
- - first heading is `Appfire — [Product Name] Accessibility Conformance Report`
173
- - no pre-report analysis sections exist
174
- - conformance cells use only allowed VPAT terms
175
- - no final legal/compliance approval is implied
176
- - document ends at Legal Disclaimer (Company)
177
-
178
- Summarize to caller: ACR draft path, product name used, evidence limitations, and reminder that this is a draft for human compliance review — not a published VPAT/ACR.
@@ -1,113 +0,0 @@
1
- ---
2
- name: vpat-repo-auditor
3
- description: >-
4
- Appfire Accessibility & VPAT Readiness Repo Auditor. Strict, evidence-driven,
5
- read-only pre-audit that assesses accessibility implementation signals and
6
- VPAT/ACR evidence gaps for future ACR drafting. Use after a11y audit.
7
- tools: Read, Grep, Glob, Bash, Write, WebFetch
8
- model: inherit
9
- ---
10
-
11
- You are "Appfire Accessibility & VPAT Readiness Repo Auditor", a strict, evidence-driven, read-only AI auditor.
12
-
13
- You are not a legal approver, not a certification body, and must never make final conformance claims from repository review alone.
14
-
15
- ## Mission
16
-
17
- Produce a pre-audit/evidence-gap report for VPAT/ACR readiness aligned to:
18
- - WCAG 2.2 A/AA baseline
19
- - Section 508 and EN 301 549 mapping readiness
20
- - Appfire evidence expectations for ACR drafting discipline
21
-
22
- Focus on:
23
- - accessibility implementation risks visible in repository evidence
24
- - evidence available for future ACR drafting
25
- - evidence gaps that block credible ACR statements
26
- - manual validation required outside repository review
27
- - remediation priorities across shared components, app features, QA, and documentation
28
-
29
- ## Hard operating constraints
30
-
31
- - Read-only only.
32
- - Do not edit source, tests, docs, or configs.
33
- - Do not create PRs or commits.
34
- - Do not expose secrets/customer data.
35
- - Missing evidence is not proof of conformance.
36
- - Static analysis is insufficient for final accessibility judgment.
37
-
38
- Use these exact phrases where relevant:
39
- - "No repo evidence found"
40
- - "Requires manual validation"
41
- - "Requires rendered UI validation"
42
- - "Requires external evidence"
43
- - "Insufficient evidence for a VPAT/ACR conformance statement"
44
- - "This cannot be verified from repository contents alone"
45
-
46
- ## Allowed values (strict)
47
-
48
- - Status: `PASS`, `FAIL`, `WARNING`, `NEEDS_MANUAL_REVIEW`, `NEEDS_EXTERNAL_EVIDENCE`, `NOT_APPLICABLE`
49
- - Severity: `BLOCKER`, `MAJOR`, `MINOR`, `INFO`
50
- - Confidence: `HIGH`, `MEDIUM`, `LOW`
51
- - Framework: `Appfire VPAT`, `WCAG 2.2`, `Section 508`, `EN 301 549`
52
- - Owner hints: `Engineering`, `Design / UX`, `QA`, `Product`, `Compliance / Legal`, `Docs / Marketing`, `Support`, `Security / Privacy`, `Unknown`
53
- - Blast radius: `single file`, `feature area`, `shared component / design system`, `whole product`, `unknown`
54
-
55
- ## Required finding schema
56
-
57
- Each finding must include:
58
- - `finding_id`
59
- - `framework`
60
- - `criterion_or_protocol_reference`
61
- - `title`
62
- - `status`
63
- - `severity`
64
- - `confidence`
65
- - `why_it_matters`
66
- - `evidence`
67
- - `affected_files`
68
- - `repo_excerpt_or_signal`
69
- - `issue_type`
70
- - `limitation_or_blind_spot`
71
- - `remediation`
72
- - `minimum_viable_fix`
73
- - `stronger_long_term_fix`
74
- - `blast_radius`
75
- - `owner_hint`
76
- - `category`
77
- - `suggested_manual_test`
78
- - `suggested_evidence_needed_for_acr`
79
- - `related_vpat_row_if_known`
80
-
81
- ## Execution phases
82
-
83
- 1. Repository profile and scope inventory.
84
- 2. Accessibility surface map.
85
- 3. Static accessibility evaluation (Perceivable / Operable / Understandable / Robust + WCAG 2.2 special attention).
86
- 4. VPAT/ACR evidence readiness assessment.
87
- 5. Prioritization and backlog by track.
88
-
89
- ## Output files
90
-
91
- Write:
92
- - `docs/audits/VPAT-REPO-AUDIT-<YYYY-MM-DD>[-prod].md`
93
- - `docs/audits/VPAT-REPO-AUDIT-<YYYY-MM-DD>[-prod].json`
94
-
95
- ## Output order (mandatory)
96
-
97
- 1. Executive summary
98
- 2. Repo accessibility profile
99
- 3. Scope and assumptions
100
- 4. Overall readiness by track
101
- 5. Top blockers (BLOCKER/MAJOR only)
102
- 6. Detailed findings (grouped by category)
103
- 7. Manual validation register
104
- 8. VPAT/ACR evidence gap register
105
- 9. Remediation backlog proposal
106
- 10. ACR datapoint collection roadmap
107
- 11. Safe conclusion (one allowed sentence only)
108
- 12. JSON appendix (machine-readable structure)
109
-
110
- Safe conclusion must be exactly one of:
111
- - "Not ready for VPAT/ACR drafting: blocking accessibility/evidence gaps present."
112
- - "Partially ready: proceed after remediation and manual evidence collection."
113
- - "Ready for human accessibility review and VPAT/ACR drafting support, not for automatic conformance claims."
@@ -1,570 +0,0 @@
1
- <!-- Source: Appfire CRUX VPAT template (Confluence page 97839317794). Do not edit structure without syncing from Confluence. -->
2
-
3
- # Appfire — [Product Name] Accessibility Conformance Report
4
-
5
- VPAT® 2.5 Rev — International Edition. Copy this page for each product, then fill in the header fields and the Conformance Level / Remarks columns. VPAT® is a registered service mark of ITI.
6
-
7
- **Name of Product/Version:**
8
-
9
- **Report Date:**
10
-
11
- **Product Description:**
12
-
13
- **Contact Information:**
14
-
15
- **Notes:**
16
-
17
- **Evaluation Methods Used:**
18
-
19
- ## Applicable Standards/Guidelines
20
-
21
- This report covers the degree of conformance for the following accessibility standard/guidelines:
22
-
23
- | Standard/Guideline | Included In Report |
24
- | --- | --- |
25
- | Web Content Accessibility Guidelines 2.0 | Level A (Yes / No) Level AA (Yes / No) Level AAA (Yes / No) |
26
- | Web Content Accessibility Guidelines 2.1 | Level A (Yes / No) Level AA (Yes / No) Level AAA (Yes / No) |
27
- | Web Content Accessibility Guidelines 2.2 | Level A (Yes / No) Level AA (Yes / No) Level AAA (Yes / No) |
28
- | Revised Section 508 standards published January 18, 2017 and corrected January 22, 2018 | (Yes / No) |
29
- | EN 301 549 Accessibility requirements for ICT products and services - V3.1.1 (2019-11) AND EN 301 549 Accessibility requirements for ICT products and services - V3.2.1 (2021-03) | (Yes / No) |
30
-
31
- ## Terms
32
-
33
- The terms used in the Conformance Level information are defined as follows:
34
-
35
- Supports: The functionality of the product has at least one method that meets the criterion without known defects or meets with equivalent facilitation.
36
-
37
- Partially Supports: Some functionality of the product does not meet the criterion.
38
-
39
- Does Not Support: The majority of product functionality does not meet the criterion.
40
-
41
- Not Applicable: The criterion is not relevant to the product.
42
-
43
- Not Evaluated: The product has not been evaluated against the criterion. This can only be used in WCAG Level AAA criteria.
44
-
45
- ## WCAG 2.x Report
46
-
47
- Tables 1 and 2 also document conformance with:
48
-
49
- EN 301 549:
50
-
51
- Clause 9 - Web
52
-
53
- Clauses 10.1-10.4 of Clause 10 - Non-Web documents
54
-
55
- Clauses 11.1-11.4 and 11.8.2 of Clause 11 - Software
56
-
57
- Clauses 12.1.2 and 12.2.4 of Clause 12 - Documentation and support services
58
-
59
- Revised Section 508:
60
-
61
- Chapter 5 - 501.1 Scope and 504.2 Content Creation or Editing
62
-
63
- Chapter 6 - 602.3 Electronic Support Documentation
64
-
65
- Note: When reporting on conformance with the WCAG 2.x Success Criteria, they are scoped for full pages, complete processes, and accessibility-supported ways of using technology as documented in the WCAG 2.1 Conformance Requirements.
66
-
67
- ### Table 1: Success Criteria, Level A
68
-
69
- **Notes:**
70
-
71
- | Criteria | Conformance Level | Remarks and Explanations |
72
- | --- | --- | --- |
73
- | **1.1.1 Non-text Content (Level A)** Also applies to: EN 301 549 Criteria 9.1.1.1 (Web) · 10.1.1.1 (Non-web document) · 11.1.1.1.1 (Open Functionality Software) · 11.1.1.1.2 (Closed Functionality Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
74
- | **1.2.1 Audio-only and Video-only (Prerecorded) (Level A)** Also applies to: EN 301 549 Criteria 9.1.2.1 (Web) · 10.1.2.1 (Non-web document) · 11.1.2.1.1 (Open Functionality Software) · 11.1.2.1.2.1 and 11.1.2.1.2.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
75
- | **1.2.2 Captions (Prerecorded) (Level A)** Also applies to: EN 301 549 Criteria 9.1.2.2 (Web) · 10.1.2.2 (Non-web document) · 11.1.2.2 (Open Functionality Software) · 11.1.2.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
76
- | **1.2.3 Audio Description or Media Alternative (Prerecorded) (Level A)** Also applies to: EN 301 549 Criteria 9.1.2.3 (Web) · 10.1.2.3 (Non-web document) · 11.1.2.3.1 (Open Functionality Software) · 11.1.2.3.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
77
- | **1.3.1 Info and Relationships (Level A)** Also applies to: EN 301 549 Criteria 9.1.3.1 (Web) · 10.1.3.1 (Non-web document) · 11.1.3.1.1 (Open Functionality Software) · 11.1.3.1.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
78
- | **1.3.2 Meaningful Sequence (Level A)** Also applies to: EN 301 549 Criteria 9.1.3.2 (Web) · 10.1.3.2 (Non-web document) · 11.1.3.2.1 (Open Functionality Software) · 11.1.3.2.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
79
- | **1.3.3 Sensory Characteristics (Level A)** Also applies to: EN 301 549 Criteria 9.1.3.3 (Web) · 10.1.3.3 (Non-web document) · 11.1.3.3 (Open Functionality Software) · 11.1.3.3 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
80
- | **1.4.1 Use of Color (Level A)** Also applies to: EN 301 549 Criteria 9.1.4.1 (Web) · 10.1.4.1 (Non-web document) · 11.1.4.1 (Open Functionality Software) · 11.1.4.1 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
81
- | **1.4.2 Audio Control (Level A)** Also applies to: EN 301 549 Criteria 9.1.4.2 (Web) · 10.1.4.2 (Non-web document) · 11.1.4.2 (Open Functionality Software) · 11.1.4.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
82
- | **2.1.1 Keyboard (Level A)** Also applies to: EN 301 549 Criteria 9.2.1.1 (Web) · 10.2.1.1 (Non-web document) · 11.2.1.1.1 (Open Functionality Software) · 11.2.1.1.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: See information in 5.1.3.1 through 5.1.3.16 Authoring Tool: | Web: Electronic Docs: Software: Closed: See information in 5.1.3.1 through 5.1.3.16 Authoring Tool: |
83
- | **2.1.2 No Keyboard Trap (Level A)** Also applies to: EN 301 549 Criteria 9.2.1.2 (Web) · 10.2.1.2 (Non-web document) · 11.2.1.2 (Open Functionality Software) · 11.2.1.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
84
- | **2.1.4 Character Key Shortcuts (Level A 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.2.1.4 (Web) · 10.2.1.4 (Non-web document) · 11.2.1.4.1 (Open Functionality Software) · 11.2.1.4.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: See information in 5.1.3.1 through 5.1.3.16 Authoring Tool: | Web: Electronic Docs: Software: Closed: See information in 5.1.3.1 through 5.1.3.16 Authoring Tool: |
85
- | **2.2.1 Timing Adjustable (Level A)** Also applies to: EN 301 549 Criteria 9.2.2.1 (Web) · 10.2.2.1 (Non-web document) · 11.2.2.1 (Open Functionality Software) · 11.2.2.1 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
86
- | **2.2.2 Pause, Stop, Hide (Level A)** Also applies to: EN 301 549 Criteria 9.2.2.2 (Web) · 10.2.2.2 (Non-web document) · 11.2.2.2 (Open Functionality Software) · 11.2.2.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
87
- | **2.3.1 Three Flashes or Below Threshold (Level A)** Also applies to: EN 301 549 Criteria 9.2.3.1 (Web) · 10.2.3.1 (Non-web document) · 11.2.3.1 (Open Functionality Software) · 11.2.3.1 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
88
- | **2.4.1 Bypass Blocks (Level A)** Also applies to: EN 301 549 Criteria 9.2.4.1 (Web) · 10.2.4.1 (Non-web document) – Does not apply · 11.2.4.1 (Open Functionality Software) – Does not apply · 11.2.4.1 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) – Does not apply to non-web software · 504.2 (Authoring Tool) · 602.3 (Support Docs) – Does not apply to non-web docs | Web: Electronic Docs: Authoring Tool: | Web: Electronic Docs: Authoring Tool: |
89
- | **2.4.2 Page Titled (Level A)** Also applies to: EN 301 549 Criteria 9.2.4.2 (Web) · 10.2.4.2 (Non-web document) · 11.2.4.2 (Open Functionality Software) - Does not apply · 11.2.4.2 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Authoring Tool: | Web: Electronic Docs: Software: Authoring Tool: |
90
- | **2.4.3 Focus Order (Level A)** Also applies to: EN 301 549 Criteria 9.2.4.3 (Web) · 10.2.4.3 (Non-web document) · 11.2.4.3 (Open Functionality Software) · 11.2.4.3 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
91
- | **2.4.4 Link Purpose (In Context) (Level A)** Also applies to: EN 301 549 Criteria 9.2.4.4 (Web) · 10.2.4.4 (Non-web document) · 11.2.4.4 (Open Functionality Software) · 11.2.4.4 (Closed Software · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
92
- | **2.5.1 Pointer Gestures (Level A 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.2.5.1 (Web) · 10.2.5.1 (Non-web document) · 11.2.5.1 (Open Functionality Software) · 11.2.5.1 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
93
- | **2.5.2 Pointer Cancellation (Level A 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.2.5.2 (Web) · 10.2.5.2 (Non-web document) · 11.2.5.2 (Open Functionality Software) · 11.2.5.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
94
- | **2.5.3 Label in Name (Level A 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.2.5.3 (Web) · 10.2.5.3 (Non-web document) · 11.2.5.3.1 (Open Functionality Software) · 11.2.5.3.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
95
- | **2.5.4 Motion Actuation (Level A 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.2.5.4 (Web) · 10.2.5.4 (Non-web document) · 11.2.5.4 (Open Functionality Software) · 11.2.5.4 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
96
- | **3.1.1 Language of Page (Level A)** Also applies to: EN 301 549 Criteria 9.3.1.1 (Web) · 10.3.1.1 (Non-web document) · 11.3.1.1.1 (Open Functionality Software) · 11.3.1.1.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
97
- | **3.2.1 On Focus (Level A)** Also applies to: EN 301 549 Criteria 9.3.2.1 (Web) · 10.3.2.1 (Non-web document) · 11.3.2.1 (Open Functionality Software) · 11.3.2.1 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
98
- | **3.2.2 On Input (Level A)** Also applies to: EN 301 549 Criteria 9.3.2.2 (Web) · 10.3.2.2 (Non-web document) · 11.3.2.2 (Open Functionality Software) · 11.3.2.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
99
- | **3.2.6 Consistent Help (Level A 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
100
- | **3.3.1 Error Identification (Level A)** Also applies to: EN 301 549 Criteria 9.3.3.1 (Web) · 10.3.3.1 (Non-web document) · 11.3.3.1.1 (Open Functionality Software) · 11.3.3.1.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
101
- | **3.3.2 Labels or Instructions (Level A)** Also applies to: EN 301 549 Criteria 9.3.3.2 (Web) · 10.3.3.2 (Non-web document) · 11.3.3.2 (Open Functionality Software) · 11.3.3.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
102
- | **3.3.7 Redundant Entry (Level A 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
103
- | **4.1.1 Parsing (Level A)** Applies to: WCAG 2.0 and 2.1 – Always answer ‘Supports’ WCAG 2.2 (obsolete and removed) - Does not apply EN 301 549 Criteria 9.4.1.1 (Web) · 10.4.1.1 (Non-web document) · 11.4.1.1.1 (Open Functionality Software) · 11.4.1.1.2 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Supports | For WCAG 2.0, 2.1, EN 301 549, and Revised 508 Standards, the September 2023 errata update indicates this criterion is always supported. See the WCAG 2.0 Editorial Errata and the WCAG 2.1 Editorial Errata. |
104
- | **4.1.2 Name, Role, Value (Level A)** Also applies to: EN 301 549 Criteria 9.4.1.2 (Web) · 10.4.1.2 (Non-web document) · 11.4.1.2.1 (Open Functionality Software) · 11.4.1.2.2 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Authoring Tool: | Web: Electronic Docs: Software: Authoring Tool: |
105
-
106
- ### Table 2: Success Criteria, Level AA
107
-
108
- **Notes:**
109
-
110
- | Criteria | Conformance Level | Remarks and Explanations |
111
- | --- | --- | --- |
112
- | **1.2.4 Captions (Live) (Level AA)** Also applies to: EN 301 549 Criteria 9.1.2.4 (Web) · 10.1.2.4 (Non-web document) · 11.1.2.4 (Open Functionality Software) · 11.1.2.4 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
113
- | **1.2.5 Audio Description (Prerecorded) (Level AA)** Also applies to: EN 301 549 Criteria 9.1.2.5 (Web) · 10.1.2.5 (Non-web document) · 11.1.2.5 (Open Functionality Software) · 11.1.2.5 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
114
- | **1.3.4 Orientation (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.3.4 (Web) · 10.1.3.4 (Non-web document) · 11.1.3.4 (Open Functionality Software) · 11.1.3.4 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
115
- | **1.3.5 Identify Input Purpose (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.3.5 (Web) · 10.1.3.5 (Non-web document) · 11.1.3.5.1 (Open Functionality Software) · 11.1.3.5.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
116
- | **1.4.3 Contrast (Minimum) (Level AA)** Also applies to: EN 301 549 Criteria 9.1.4.3 (Web) · 10.1.4.3 (Non-web document) · 11.1.4.3 (Open Functionality Software) · 11.1.4.3 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
117
- | **1.4.4 Resize text (Level AA)** Also applies to: EN 301 549 Criteria 9.1.4.4 (Web) · 10.1.4.4 (Non-web document) · 11.1.4.4.1 (Open Functionality Software) · 11.1.4.4.2 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
118
- | **1.4.5 Images of Text (Level AA)** Also applies to: EN 301 549 Criteria 9.1.4.5 (Web) · 10.1.4.5 (Non-web document) · 11.1.4.5.1 (Open Functionality Software) · 11.1.4.5.2 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Authoring Tool: | Web: Electronic Docs: Software: Authoring Tool: |
119
- | **1.4.10 Reflow (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.4.10 (Web) · 10.1.4.10 (Non-web document) · 11.1.4.10 (Open Functionality Software) · 11.1.4.10 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
120
- | **1.4.11 Non-text Contrast (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.4.11 (Web) · 10.1.4.11 (Non-web document) · 11.1.4.11 (Open Functionality Software) · 11.1.4.11 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
121
- | **1.4.12 Text Spacing (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.4.12 (Web) · 10.1.4.12 (Non-web document) · 11.1.4.12 (Open Functionality Software) · 11.1.4.12 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
122
- | **1.4.13 Content on Hover or Focus (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.1.4.13 (Web) · 10.1.4.13 (Non-web document) · 11.1.4.13 (Open Functionality Software) · 11.1.4.13 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
123
- | **2.4.5 Multiple Ways (Level AA)** Also applies to: EN 301 549 Criteria 9.2.4.5 (Web) · 10.2.4.5 (Non-web document) – Does not apply · 11.2.4.5 (Open Functionality Software) – Does not apply · 11.2.4.5 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) – Does not apply to non-web software · 504.2 (Authoring Tool) · 602.3 (Support Docs) – Does not apply to non-web docs | Web: Electronic Docs: Authoring Tool: | Web: Electronic Docs: Authoring Tool: |
124
- | **2.4.6 Headings and Labels (Level AA)** Also applies to: EN 301 549 Criteria 9.2.4.6 (Web) · 10.2.4.6 (Non-web document) · 11.2.4.6 (Open Functionality Software) · 11.2.4.6 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
125
- | **2.4.7 Focus Visible (Level AA)** Also applies to: EN 301 549 Criteria 9.2.4.7 (Web) · 10.2.4.7 (Non-web document) · 11.2.4.7 (Open Functionality Software) · 11.2.4.7 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
126
- | **2.4.11 Focus Not Obscured (Minimum) (Level AA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
127
- | **2.5.7 Dragging Movements (Level AA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
128
- | **2.5.8 Target Size (Minimum) (Level AA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
129
- | **3.1.2 Language of Parts (Level AA)** Also applies to: EN 301 549 Criteria 9.3.1.2 (Web) · 10.3.1.2 (Non-web document) · 11.3.1.2 (Open Functionality Software) – Does not apply · 11.3.1.2 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Authoring Tool: | Web: Electronic Docs: Software: Authoring Tool: |
130
- | **3.2.3 Consistent Navigation (Level AA)** Also applies to: EN 301 549 Criteria 9.3.2.3 (Web) · 10.3.2.3 (Non-web document) – Does not apply · 11.3.2.3 (Open Functionality Software) – Does not apply · 11.3.2.3 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) – Does not apply to non-web software · 504.2 (Authoring Tool) · 602.3 (Support Docs) – Does not apply to non-web docs | Web: Electronic Docs: Authoring Tool: | Web: Electronic Docs: Authoring Tool: |
131
- | **3.2.4 Consistent Identification (Level AA)** Also applies to: EN 301 549 Criteria 9.3.2.4 (Web) · 10.3.2.4 (Non-web document) – Does not apply · 11.3.2.4 (Open Functionality Software) – Does not apply · 11.3.2.4 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) – Does not apply to non-web software · 504.2 (Authoring Tool) · 602.3 (Support Docs) – Does not apply to non-web docs | Web: Electronic Docs: Authoring Tool: | Web: Electronic Docs: Authoring Tool: |
132
- | **3.3.3 Error Suggestion (Level AA)** Also applies to: EN 301 549 Criteria 9.3.3.3 (Web) · 10.3.3.3 (Non-web document) · 11.3.3.3 (Open Functionality Software) · 11.3.3.3 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
133
- | **3.3.4 Error Prevention (Legal, Financial, Data) (Level AA)** Also applies to: EN 301 549 Criteria 9.3.3.4 (Web) · 10.3.3.4 (Non-web document) · 11.3.3.4 (Open Functionality Software) · 11.3.3.4 (Closed Software) · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 501 (Web)(Software) · 504.2 (Authoring Tool) · 602.3 (Support Docs) | Web: Electronic Docs: Software: Closed: Authoring Tool: | Web: Electronic Docs: Software: Closed: Authoring Tool: |
134
- | **3.3.8 Accessible Authentication (Minimum) (Level AA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
135
- | **4.1.3 Status Messages (Level AA 2.1 and 2.2)** Also applies to: EN 301 549 Criteria 9.4.1.3 (Web) · 10.4.1.3 (Non-web document) · 11.4.1.3 (Open Functionality Software) · 11.4.1.3 (Closed Software) – Does not apply · 11.8.2 (Authoring Tool) · 12.1.2 (Product Docs) · 12.2.4 (Support Docs) Revised Section 508 – Does not apply | Web: Electronic Docs: Authoring Tool: | Web: Electronic Docs: Authoring Tool: |
136
-
137
- ### Table 3: Success Criteria, Level AAA
138
-
139
- **Notes:**
140
-
141
- | Criteria | Conformance Level | Remarks and Explanations |
142
- | --- | --- | --- |
143
- | **1.2.6 Sign Language (Prerecorded) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
144
- | **1.2.7 Extended Audio Description (Prerecorded) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
145
- | **1.2.8 Media Alternative (Prerecorded) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
146
- | **1.2.9 Audio-only (Live) (Level AAA)** EN 301 549 Criteria– Does not apply Revised Section 508 – Does not apply | Web: | Web: |
147
- | **1.3.6 Identify Purpose (Level AAA 2.1 and 2.2)** EN 301 549 Criteria– Does not apply Revised Section 508 – Does not apply | Web: | Web: |
148
- | **1.4.6 Contrast (Enhanced) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
149
- | **1.4.7 Low or No Background Audio (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
150
- | **1.4.8 Visual Presentation (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
151
- | **1.4.9 Images of Text (No Exception) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
152
- | **2.1.3 Keyboard (No Exception) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
153
- | **2.2.3 No Timing (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
154
- | **2.2.4 Interruptions (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
155
- | **2.2.5 Re-authenticating (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
156
- | **2.2.6 Timeouts (Level AAA 2.1 and 2.2)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
157
- | **2.3.2 Three Flashes (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
158
- | **2.3.3 Animation from Interactions (Level AAA 2.1 and 2.2)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
159
- | **2.4.8 Location (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
160
- | **2.4.9 Link Purpose (Link Only) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
161
- | **2.4.10 Section Headings (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
162
- | **2.4.12 Focus Not Obscured (Enhanced) (Level AAA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
163
- | **2.4.13 Focus Appearance (Level AAA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
164
- | **2.5.5 Target Size (Level AAA 2.1 and 2.2)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
165
- | **2.5.6 Concurrent Input Mechanisms (Level AAA 2.1 and 2.2)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
166
- | **3.1.3 Unusual Words (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
167
- | **3.1.4 Abbreviations (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
168
- | **3.1.5 Reading Level (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
169
- | **3.1.6 Pronunciation (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
170
- | **3.2.5 Change on Request (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
171
- | **3.3.5 Help (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
172
- | **3.3.6 Error Prevention (All) (Level AAA)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
173
- | **3.3.9 Accessible Authentication (Enhanced) (Level AAA 2.2 only)** EN 301 549 Criteria – Does not apply Revised Section 508 – Does not apply | Web: | Web: |
174
-
175
- ## Revised Section 508 Report
176
-
177
- **Notes:**
178
-
179
- ### Chapter 3: Functional Performance Criteria (FPC)
180
-
181
- **Notes:**
182
-
183
- | Criteria | Conformance Level | Remarks and Explanations |
184
- | --- | --- | --- |
185
- | **302.1 Without Vision** | | |
186
- | **302.2 With Limited Vision** | | |
187
- | **302.3 Without Perception of Color** | | |
188
- | **302.4 Without Hearing** | | |
189
- | **302.5 With Limited Hearing** | | |
190
- | **302.6 Without Speech** | | |
191
- | **302.7 With Limited Manipulation** | | |
192
- | **302.8 With Limited Reach and Strength** | | |
193
- | **302.9 With Limited Language, Cognitive, and Learning Abilities** | | |
194
-
195
- ### Chapter 4: Hardware
196
-
197
- **Notes:**
198
-
199
- | Criteria | Conformance Level | Remarks and Explanations |
200
- | --- | --- | --- |
201
- | **402 Closed Functionality** | Heading cell – no response required | Heading cell – no response required |
202
- | **402.1 General** | Heading cell – no response required | Heading cell – no response required |
203
- | **402.2 Speech-Output Enabled** | Heading cell – no response required | Heading cell – no response required |
204
- | **402.2.1 Information Displayed On-Screen** | | |
205
- | **402.2.2 Transactional Outputs** | | |
206
- | **402.2.3 Speech Delivery Type and Coordination** | | |
207
- | **402.2.4 User Control** | | |
208
- | **402.2.5 Braille Instructions** | | |
209
- | **402.3 Volume** | Heading cell – no response required | Heading cell – no response required |
210
- | **402.3.1 Private Listening** | | |
211
- | **402.3.2 Non-private Listening** | | |
212
- | **402.4 Characters on Display Screens** | | |
213
- | **402.5 Characters on Variable Message Signs** | | |
214
- | **403 Biometrics** | Heading cell – no response required | Heading cell – no response required |
215
- | **403.1 General** | | |
216
- | **404 Preservation of Information Provided for Accessibility** | Heading cell – no response required | Heading cell – no response required |
217
- | **404.1 General** | | |
218
- | **405 Privacy** | Heading cell – no response required | Heading cell – no response required |
219
- | **405.1 General** | | |
220
- | **406 Standard Connections** | Heading cell – no response required | Heading cell – no response required |
221
- | **406.1 General** | | |
222
- | **407 Operable Parts** | Heading cell – no response required | Heading cell – no response required |
223
- | **407.2 Contrast** | | |
224
- | **407.3 Input Controls** | Heading cell – no response required | Heading cell – no response required |
225
- | **407.3.1 Tactilely Discernible** | | |
226
- | **407.3.2 Alphabetic Keys** | | |
227
- | **407.3.3 Numeric Keys** | | |
228
- | **407.4 Key Repeat** | | |
229
- | **407.5 Timed Response** | | |
230
- | **407.6 Operation** | | |
231
- | **407.7 Tickets, Fare Cards, and Keycards** | | |
232
- | **407.8 Reach Height and Depth** | Heading cell – no response required | Heading cell – no response required |
233
- | **407.8.1 Vertical Reference Plane** | | |
234
- | **407.8.1.1 Vertical Plane for Side Reach** | | |
235
- | **407.8.1.2 Vertical Plane for Forward Reach** | | |
236
- | **407.8.2 Side Reach** | | |
237
- | **407.8.2.1 Unobstructed Side Reach** | | |
238
- | **407.8.2.2 Obstructed Side Reach** | | |
239
- | **407.8.3 Forward Reach** | | |
240
- | **407.8.3.1 Unobstructed Forward Reach** | | |
241
- | **407.8.3.2 Obstructed Forward Reach** | | |
242
- | **407.8.3.2.1 Operable Part Height for ICT with Obstructed Forward Reach** | | |
243
- | **407.8.3.2.2 Knee and Toe Space under ICT with Obstructed Forward Reach** | | |
244
- | **408 Display Screens** | Heading cell – no response required | Heading cell – no response required |
245
- | **408.2 Visibility** | | |
246
- | **408.3 Flashing** | | |
247
- | **409 Status Indicators** | Heading cell – no response required | Heading cell – no response required |
248
- | **409.1 General** | | |
249
- | **410 Color Coding** | Heading cell – no response required | Heading cell – no response required |
250
- | **410.1 General** | | |
251
- | **411 Audible Signals** | Heading cell – no response required | Heading cell – no response required |
252
- | **411.1 General** | | |
253
- | **412 ICT with Two-Way Voice Communication** | Heading cell – no response required | Heading cell – no response required |
254
- | **412.2 Volume Gain** | Heading cell – no response required | Heading cell – no response required |
255
- | **412.2.1 Volume Gain for Wireline Telephones** | | |
256
- | **412.2.2 Volume Gain for Non-Wireline ICT** | | |
257
- | **412.3 Interference Reduction and Magnetic Coupling** | Heading cell – no response required | Heading cell – no response required |
258
- | **412.3.1 Wireless Handsets** | | |
259
- | **412.3.2 Wireline Handsets** | | |
260
- | **412.4 Digital Encoding of Speech** | | |
261
- | **412.5 Real-Time Text Functionality** | Reserved for future | Reserved for future |
262
- | **412.6 Caller ID** | | |
263
- | **412.7 Video Communication** | | |
264
- | **412.8 Legacy TTY Support** | Heading cell – no response required | Heading cell – no response required |
265
- | **412.8.1 TTY Connectability** | | |
266
- | **412.8.2 Voice and Hearing Carry Over** | | |
267
- | **412.8.3 Signal Compatibility** | | |
268
- | **412.8.4 Voice Mail and Other Messaging Systems** | | |
269
- | **413 Closed Caption Processing Technologies** | Heading cell – no response required | Heading cell – no response required |
270
- | **413.1.1 Decoding and Display of Closed Captions** | | |
271
- | **413.1.2 Pass-Through of Closed Caption Data** | | |
272
- | **414 Audio Description Processing Technologies** | Heading cell – no response required | Heading cell – no response required |
273
- | **414.1.1 Digital Television Tuners** | | |
274
- | **414.1.2 Other ICT** | | |
275
- | **415 User Controls for Captions and Audio Descriptions** | Heading cell – no response required | Heading cell – no response required |
276
- | **415.1.1 Caption Controls** | | |
277
- | **415.1.2 Audio Description Controls** | | |
278
-
279
- ### Chapter 5: Software
280
-
281
- **Notes:**
282
-
283
- | Criteria | Conformance Level | Remarks and Explanations |
284
- | --- | --- | --- |
285
- | **501.1 Scope – Incorporation of WCAG 2.0 AA** | See WCAG 2.x section | See information in WCAG 2.x section |
286
- | **502 Interoperability with Assistive Technology** | Heading cell – no response required | Heading cell – no response required |
287
- | **502.2.1 User Control of Accessibility Features** | | |
288
- | **502.2.2 No Disruption of Accessibility Features** | | |
289
- | **502.3 Accessibility Services** | Heading cell – no response required | Heading cell – no response required |
290
- | **502.3.1 Object Information** | | |
291
- | **502.3.2 Modification of Object Information** | | |
292
- | **502.3.3 Row, Column, and Headers** | | |
293
- | **502.3.4 Values** | | |
294
- | **502.3.5 Modification of Values** | | |
295
- | **502.3.6 Label Relationships** | | |
296
- | **502.3.7 Hierarchical Relationships** | | |
297
- | **502.3.8 Text** | | |
298
- | **502.3.9 Modification of Text** | | |
299
- | **502.3.10 List of Actions** | | |
300
- | **502.3.11 Actions on Objects** | | |
301
- | **502.3.12 Focus Cursor** | | |
302
- | **502.3.13 Modification of Focus Cursor** | | |
303
- | **502.3.14 Event Notification** | | |
304
- | **502.4 Platform Accessibility Features** | | |
305
- | **503 Applications** | Heading cell – no response required | Heading cell – no response required |
306
- | **503.2 User Preferences** | | |
307
- | **503.3 Alternative User Interfaces** | | |
308
- | **503.4 User Controls for Captions and Audio Description** | Heading cell – no response required | Heading cell – no response required |
309
- | **503.4.1 Caption Controls** | | |
310
- | **503.4.2 Audio Description Controls** | | |
311
- | **504 Authoring Tools** | Heading cell – no response required | Heading cell – no response required |
312
- | **504.2 Content Creation or Editing (if not authoring tool, enter “not applicable”)** | See WCAG 2.x section | See information in WCAG 2.x section |
313
- | **504.2.1 Preservation of Information Provided for Accessibility in Format Conversion** | | |
314
- | **504.2.2 PDF Export** | | |
315
- | **504.3 Prompts** | | |
316
- | **504.4 Templates** | | |
317
-
318
- ### Chapter 6: Support Documentation and Services
319
-
320
- **Notes:**
321
-
322
- | Criteria | Conformance Level | Remarks and Explanations |
323
- | --- | --- | --- |
324
- | **601.1 Scope** | Heading cell – no response required | Heading cell – no response required |
325
- | **602 Support Documentation** | Heading cell – no response required | Heading cell – no response required |
326
- | **602.2 Accessibility and Compatibility Features** | | |
327
- | **602.3 Electronic Support Documentation** | See WCAG 2.x section | See information in WCAG 2.x section |
328
- | **602.4 Alternate Formats for Non-Electronic Support Documentation** | | |
329
- | **603 Support Services** | Heading cell – no response required | Heading cell – no response required |
330
- | **603.2 Information on Accessibility and Compatibility Features** | | |
331
- | **603.3 Accommodation of Communication Needs** | | |
332
-
333
- ## EN 301 549 Report
334
-
335
- **Notes:**
336
-
337
- ### Clause 4: Functional Performance Statements (FPS)
338
-
339
- **Notes:**
340
-
341
- | Criteria | Conformance Level | Remarks and Explanations |
342
- | --- | --- | --- |
343
- | **4.2.1 Usage without vision** | | |
344
- | **4.2.2 Usage with limited vision** | | |
345
- | **4.2.3 Usage without perception of colour** | | |
346
- | **4.2.4 Usage without hearing** | | |
347
- | **4.2.5 Usage with limited hearing** | | |
348
- | **4.2.6 Usage with no or limited vocal capability** | | |
349
- | **4.2.7 Usage with limited manipulation or strength** | | |
350
- | **4.2.8 Usage with limited reach** | | |
351
- | **4.2.9 Minimize photosensitive seizure triggers** | | |
352
- | **4.2.10 Usage with limited cognition, language or learning** | | |
353
- | **4.2.11 Privacy** | | |
354
-
355
- ### Clause 5: Generic Requirements
356
-
357
- **Notes:**
358
-
359
- | Criteria | Conformance Level | Remarks and Explanations |
360
- | --- | --- | --- |
361
- | **5.1 Closed functionality** | Heading cell – no response required | Heading cell – no response required |
362
- | **5.1.2 General** | Heading cell – no response required | Heading cell – no response required |
363
- | **5.1.2.1 Closed functionality** | See 5.2 through 13 | See information in 5.2 through 13 |
364
- | **5.1.2.2 Assistive technology** | See 5.1.3 through 5.1.6 | See information in 5.1.3 through 5.1.6 |
365
- | **5.1.3 Non-visual access** | Heading cell – no response required | Heading cell – no response required |
366
- | **5.1.3.1 Audio output of visual information** | | |
367
- | **5.1.3.2 Auditory output delivery including speech** | | |
368
- | **5.1.3.3 Auditory output correlation** | | |
369
- | **5.1.3.4 Speech output user control** | | |
370
- | **5.1.3.5 Speech output automatic interruption** | | |
371
- | **5.1.3.6 Speech output for non-text content** | | |
372
- | **5.1.3.7 Speech output for video information** | | |
373
- | **5.1.3.8 Masked entry** | | |
374
- | **5.1.3.9 Private access to personal data** | | |
375
- | **5.1.3.10 Non-interfering audio output** | | |
376
- | **5.1.3.11 Private listening volume** | | |
377
- | **5.1.3.12 Speaker volume** | | |
378
- | **5.1.3.13 Volume reset** | | |
379
- | **5.1.3.14 Spoken languages** | | |
380
- | **5.1.3.15 Non-visual error identification** | | |
381
- | **5.1.3.16 Receipts, tickets, and transactional outputs** | | |
382
- | **5.1.4 Functionality closed to text enlargement** | | |
383
- | **5.1.5 Visual output for auditory information** | | |
384
- | **5.1.6 Operation without keyboard interface** | Heading cell – no response required | Heading cell – no response required |
385
- | **5.1.6.1 Closed functionality** | See 5.1.3.1 through 5.1.3.16 | See information in 5.1.3.1 through 5.1.3.16 |
386
- | **5.1.6.2 Input focus** | | |
387
- | **5.1.7 Access without speech** | | |
388
- | **5.2 Activation of accessibility features** | | |
389
- | **5.3 Biometrics** | | |
390
- | **5.4 Preservation of accessibility information during conversion** | | |
391
- | **5.5 Operable parts** | Heading cell – no response required | Heading cell – no response required |
392
- | **5.5.1 Means of operation** | | |
393
- | **5.5.2 Operable parts discernibility** | | |
394
- | **5.6 Locking or toggle controls** | Heading cell – no response required | Heading cell – no response required |
395
- | **5.6.1 Tactile or auditory status** | | |
396
- | **5.6.2 Visual status** | | |
397
- | **5.7 Key repeat** | | |
398
- | **5.8 Double-strike key acceptance** | | |
399
- | **5.9 Simultaneous user actions** | | |
400
-
401
- ### Clause 6: ICT with Two-Way Voice Communication
402
-
403
- **Notes:**
404
-
405
- | Criteria | Conformance Level | Remarks and Explanations |
406
- | --- | --- | --- |
407
- | **6.1 Audio bandwidth for speech** | | |
408
- | **6.2 Real-time text (RTT) functionality** | Heading cell – no response required | Heading cell – no response required |
409
- | **6.2.1.1 RTT communication** | | |
410
- | **6.2.1.2 Concurrent voice and text** | | |
411
- | **6.2.2.1 Visually distinguishable display** | | |
412
- | **6.2.2.2 Programmatically determinable send and receive direction** | | |
413
- | **6.2.2.3 Speaker identification** | | |
414
- | **6.2.2.4 Visual indicator of Audio with RTT** | | |
415
- | **6.2.3 Interoperability** | | |
416
- | **6.2.4 RTT responsiveness** | | |
417
- | **6.3 Caller ID** | | |
418
- | **6.4 Alternatives to voice-based services** | | |
419
- | **6.5 Video communication** | Heading cell – no response required | Heading cell – no response required |
420
- | **6.5.1 General (informative)** | Heading cell – no response required | Heading cell – no response required |
421
- | **6.5.2 Resolution** | | |
422
- | **6.5.3 Frame rate** | | |
423
- | **6.5.4 Synchronization between audio and video** | | |
424
- | **6.5.5 Visual indicator of audio with video** | | |
425
- | **6.5.6 Speaker identification with video (sign language) communication** | | |
426
- | **6.6 Alternatives to video-based services (advisory only)** | Advisory – no response required | Advisory – no response required |
427
-
428
- ### Clause 7: ICT with Video Capabilities
429
-
430
- **Notes:**
431
-
432
- | Criteria | Conformance Level | Remarks and Explanations |
433
- | --- | --- | --- |
434
- | **7.1 Caption processing technology** | Heading cell – no response required | Heading cell – no response required |
435
- | **7.1.1 Captioning playback** | | |
436
- | **7.1.2 Captioning synchronization** | | |
437
- | **7.1.3 Preservation of captioning** | | |
438
- | **7.1.4 Captions characteristics** | | |
439
- | **7.1.5 Spoken subtitles** | | |
440
- | **7.2.1 Audio description playback** | | |
441
- | **7.2.2 Audio description synchronization** | | |
442
- | **7.2.3 Preservation of audio description** | | |
443
- | **7.3 User controls for captions and audio description** | | |
444
-
445
- ### Clause 8: Hardware
446
-
447
- **Notes:**
448
-
449
- | Criteria | Conformance Level | Remarks and Explanations |
450
- | --- | --- | --- |
451
- | **8.1.1 Generic requirements** | Heading cell – no response required | Heading cell – no response required |
452
- | **8.1.2 Standard connections** | | |
453
- | **8.1.3 Colour** | | |
454
- | **8.2 Hardware products with speech output** | Heading cell – no response required | Heading cell – no response required |
455
- | **8.2.1.1 Speech volume range** | | |
456
- | **8.2.1.2 Incremental volume control** | | |
457
- | **8.2.2.1 Fixed-line devices** | | |
458
- | **8.2.2.2 Wireless communication devices** | | |
459
- | **8.3 Stationary ICT** | Heading cell – no response required | Heading cell – no response required |
460
- | **8.3.2.1 Unobstructed high forward reach** | | |
461
- | **8.3.2.2 Unobstructed low forward reach** | | |
462
- | **8.3.2.3.1 Clear space** | | |
463
- | **8.3.2.3.2 Obstructed (< 510 mm) forward reach** | | |
464
- | **8.3.2.3.3 Obstructed (< 635 mm) forward reach** | | |
465
- | **8.3.2.4 Knee and toe clearance width** | | |
466
- | **8.3.2.5 Toe clearance** | | |
467
- | **8.3.2.6 Knee clearance** | | |
468
- | **8.3.3.1 Unobstructed high side reach** | | |
469
- | **8.3.3.2 Unobstructed low side reach** | | |
470
- | **8.3.3.3.1 Obstructed (≤ 255 mm) side reach** | | |
471
- | **8.3.3.3.2 Obstructed (≤ 610 mm) side reach** | | |
472
- | **8.3.4.1 Change in level** | | |
473
- | **8.3.4.2 Clear floor or ground space** | | |
474
- | **8.3.4.3.2 Forward approach** | | |
475
- | **8.3.4.3.3 Parallel approach** | | |
476
- | **8.3.5 Visibility** | | |
477
- | **8.3.6 Installation instructions** | | |
478
- | **8.4 Mechanically Operable parts** | Heading cell – no response required | Heading cell – no response required |
479
- | **8.4.1 Numeric keys** | | |
480
- | **8.4.2.1 Means of operation of mechanical parts** | | |
481
- | **8.4.2.2 Force of operation of mechanical parts** | | |
482
- | **8.4.3 Keys, tickets and fare cards** | | |
483
- | **8.5 Tactile indication of speech mode** | | |
484
-
485
- ### Clause 9: Web (see WCAG 2.x section)
486
-
487
- **Notes:**
488
-
489
- ### Clause 10: Non-Web Documents
490
-
491
- **Notes:**
492
-
493
- | Criteria | Conformance Level | Remarks and Explanations |
494
- | --- | --- | --- |
495
- | **10.0 General (informative)** | Heading cell – no response required | Heading cell – no response required |
496
- | **10.1.1.1 through 10.4.1.3** | See WCAG 2.x section | See information in WCAG 2.x section |
497
- | **10.5 Caption positioning** | | |
498
- | **10.6 Audio description timing** | | |
499
-
500
- ### Clause 11: Software
501
-
502
- **Notes:**
503
-
504
- | Criteria | Conformance Level | Remarks and Explanations |
505
- | --- | --- | --- |
506
- | **11.0 General (informative)** | Heading cell – no response required | Heading cell – no response required |
507
- | **11.1.1.1 through 11.4.1.3** | See WCAG 2.x section | See information in WCAG 2.x section |
508
- | **11.5 Interoperability with assistive technology** | Heading cell – no response required | Heading cell – no response required |
509
- | **11.5.1 Closed functionality** | Heading cell – no response required | Heading cell – no response required |
510
- | **11.5.2 Accessibility services** | Heading cell – no response required | Heading cell – no response required |
511
- | **11.5.2.1 Platform accessibility service support for software that provides a user interface** | See 11.5.2.5 through 11.5.2.17 | See information in 11.5.2.5 through 11.5.2.17 |
512
- | **11.5.2.2 Platform accessibility service support for assistive technologies** | See 11.5.2.5 through 11.5.2.17 | See information in 11.5.2.5 through 11.5.2.17 |
513
- | **11.5.2.3 Use of accessibility services** | See information in 11.5.2.5 through 11.5.2.17 | See information in 11.5.2.5 through 11.5.2.17 |
514
- | **11.5.2.4 Assistive technology** | | |
515
- | **11.5.2.5 Object information** | | |
516
- | **11.5.2.6 Row, column, and headers** | | |
517
- | **11.5.2.7 Values** | | |
518
- | **11.5.2.8 Label relationships** | | |
519
- | **11.5.2.9 Parent-child relationships** | | |
520
- | **11.5.2.10 Text** | | |
521
- | **11.5.2.11 List of available actions** | | |
522
- | **11.5.2.12 Execution of available actions** | | |
523
- | **11.5.2.13 Tracking of focus and selection attributes** | | |
524
- | **11.5.2.14 Modification of focus and selection attributes** | | |
525
- | **11.5.2.15 Change notification** | | |
526
- | **11.5.2.16 Modifications of states and properties** | | |
527
- | **11.5.2.17 Modifications of values and text** | | |
528
- | **11.6 Documented accessibility usage** | Heading cell – no response required | Heading cell – no response required |
529
- | **11.6.1 User control of accessibility features** | | |
530
- | **11.6.2 No disruption of accessibility features** | | |
531
- | **11.7 User preferences** | | |
532
- | **11.8 Authoring tools** | Heading cell – no response required | Heading cell – no response required |
533
- | **11.8.1 Content technology** | Heading cell – no response required | Heading cell – no response required |
534
- | **11.8.2 Accessible content creation** | See WCAG 2.x section (If not authoring tool, enter “Not Applicable”) | See information in WCAG 2.x section |
535
- | **11.8.3 Preservation of accessibility information in transformations** | | |
536
- | **11.8.4 Repair assistance** | | |
537
- | **11.8.5 Templates** | | |
538
-
539
- ### Clause 12: Documentation and Support Services
540
-
541
- **Notes:**
542
-
543
- | Criteria | Conformance Level | Remarks and Explanations |
544
- | --- | --- | --- |
545
- | **12.1 Product documentation** | Heading cell – no response required | Heading cell – no response required |
546
- | **12.1.1 Accessibility and compatibility features** | | |
547
- | **12.1.2 Accessible documentation** | See WCAG 2.x section | See information in WCAG 2.x section |
548
- | **12.2 Support Services** | Heading cell – no response required | Heading cell – no response required |
549
- | **12.2.2 Information on accessibility and compatibility features** | | |
550
- | **12.2.3 Effective communication** | | |
551
- | **12.2.4 Accessible documentation** | See WCAG 2.x section | See information in WCAG 2.x section |
552
-
553
- ### Clause 13: ICT Providing Relay or Emergency Service Access
554
-
555
- **Notes:**
556
-
557
- | Criteria | Conformance Level | Remarks and Explanations |
558
- | --- | --- | --- |
559
- | **13.1 Relay services requirements** | Heading cell – no response required | Heading cell – no response required |
560
- | **13.1.2 Text relay services** | | |
561
- | **13.1.3 Sign relay services** | | |
562
- | **13.1.4 Lip-reading relay services** | | |
563
- | **13.1.5 Captioned telephony services** | | |
564
- | **13.1.6 Speech to speech relay services** | | |
565
- | **13.2 Access to relay services** | | |
566
- | **13.3 Access to emergency services** | | |
567
-
568
- ## Legal Disclaimer (Company)
569
-
570
- Include your company legal disclaimer here, if needed.