From 6165904d6106b807c34a0186755deef0a83e2ef5 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 24 Nov 2022 14:57:23 +0000 Subject: [PATCH 01/11] Create manual_test_rule_template Adding a first go at the manual test rule template (same as the others but with extra guidance at the start) --- manual_test_rule_template | 107 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 manual_test_rule_template diff --git a/manual_test_rule_template b/manual_test_rule_template new file mode 100644 index 00000000000..487a6f1b97b --- /dev/null +++ b/manual_test_rule_template @@ -0,0 +1,107 @@ +This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help (like adding examples of code). + +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Comunnity Group. Delete these instructions until the --- before "id:" (delete rows 1-6). + +Save the finished rule with the Title to display or success criterion aspect being tested. + +--- +id: +name: +rule_type: atomic +description: | + This rule checks ... +accessibility_requirements: # Remove whatever is not applicable + wcag20:x.x.x: # (A | AA | AAA) + forConformance: true | false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + aria11:anchor-name: # + title: Title to display + forConformance: true | false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + wcag-technique:Xxx: # + forConformance: false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + using-aria:anchor-name: # + title: Title to display + forConformance: false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed +input_aspects: + - # (e.g. HTTP Messages, DOM Tree, CSS Styling, Accessibility Tree, Language, etc.,) +acknowledgments: + authors: + - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) + previous_authors: + - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) +--- + +## Applicability + +This rule applies to any (??) element ... + +## Expectation (1) + +Each target element ... + +## Assumptions + +There are no assumptions. + +## Accessibility Support + +There are no accessibility support issues known. + +## Background + +- (e.g. WCAG Techniques or links with background information mentioned in Applicability, Expectations or Assumptions) + +## Test Cases + +### Passed + +#### Passed Example 1 + +Description... + +```html + +``` + +#### Passed Example 2 + +... + +### Failed + +#### Failed Example 1 + +Description... + +```html + +``` + +#### Failed Example 2 + +... + +### Inapplicable + +#### Inapplicable Example 1 + +Description... + +```html + +``` + +#### Inapplicable Example 2 + +... From 27ca8e931776eb44d252c682683b61787bc10d58 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:45:36 +0000 Subject: [PATCH 02/11] Update manual_test_rule_template Co-authored-by: Carlos Duarte --- manual_test_rule_template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual_test_rule_template b/manual_test_rule_template index 487a6f1b97b..59ac493ce1a 100644 --- a/manual_test_rule_template +++ b/manual_test_rule_template @@ -1,4 +1,4 @@ -This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help (like adding examples of code). +This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Comunnity Group. Delete these instructions until the --- before "id:" (delete rows 1-6). From e44a63528455e712f62105d4793507b81edf5dfa Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 5 Jan 2023 11:23:19 +0100 Subject: [PATCH 03/11] Move file with other templates --- .../design/manual-template-empty.md | 59 ++++++++++--------- 1 file changed, 30 insertions(+), 29 deletions(-) rename manual_test_rule_template => pages/design/manual-template-empty.md (51%) diff --git a/manual_test_rule_template b/pages/design/manual-template-empty.md similarity index 51% rename from manual_test_rule_template rename to pages/design/manual-template-empty.md index 59ac493ce1a..b258dcbf2ad 100644 --- a/manual_test_rule_template +++ b/pages/design/manual-template-empty.md @@ -5,41 +5,42 @@ For the starting section, and examples, complete what you feel comfortable with Save the finished rule with the Title to display or success criterion aspect being tested. --- + id: name: rule_type: atomic description: | - This rule checks ... +This rule checks ... accessibility_requirements: # Remove whatever is not applicable - wcag20:x.x.x: # (A | AA | AAA) - forConformance: true | false - failed: not satisfied - passed: satisfied | further testing needed - inapplicable: satisfied | further testing needed - aria11:anchor-name: # - title: Title to display - forConformance: true | false - failed: not satisfied - passed: satisfied | further testing needed - inapplicable: satisfied | further testing needed - wcag-technique:Xxx: # - forConformance: false - failed: not satisfied - passed: satisfied | further testing needed - inapplicable: satisfied | further testing needed - using-aria:anchor-name: # - title: Title to display - forConformance: false - failed: not satisfied - passed: satisfied | further testing needed - inapplicable: satisfied | further testing needed +wcag20:x.x.x: # (A | AA | AAA) +forConformance: true | false +failed: not satisfied +passed: satisfied | further testing needed +inapplicable: satisfied | further testing needed +aria11:anchor-name: # +title: Title to display +forConformance: true | false +failed: not satisfied +passed: satisfied | further testing needed +inapplicable: satisfied | further testing needed +wcag-technique:Xxx: # +forConformance: false +failed: not satisfied +passed: satisfied | further testing needed +inapplicable: satisfied | further testing needed +using-aria:anchor-name: # +title: Title to display +forConformance: false +failed: not satisfied +passed: satisfied | further testing needed +inapplicable: satisfied | further testing needed input_aspects: - - # (e.g. HTTP Messages, DOM Tree, CSS Styling, Accessibility Tree, Language, etc.,) -acknowledgments: - authors: - - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) - previous_authors: - - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) + +- # (e.g. HTTP Messages, DOM Tree, CSS Styling, Accessibility Tree, Language, etc.,) + acknowledgments: + authors: - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) + previous_authors: - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) + --- ## Applicability From 02809893f9152403be6f207649752082fa288c28 Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 5 Jan 2023 12:50:23 +0100 Subject: [PATCH 04/11] Typo --- pages/design/manual-template-empty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index b258dcbf2ad..17f2220845e 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -1,6 +1,6 @@ This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). -For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Comunnity Group. Delete these instructions until the --- before "id:" (delete rows 1-6). +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions until the --- before "id:" (delete rows 1-6). Save the finished rule with the Title to display or success criterion aspect being tested. From c48feb33ab5bddc02a134164ce396b6bef450ae6 Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 5 Jan 2023 13:01:37 +0100 Subject: [PATCH 05/11] Use ARIA1.2 in frontmatter --- pages/design/manual-template-empty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 17f2220845e..ecb7ce8d1ff 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -17,7 +17,7 @@ forConformance: true | false failed: not satisfied passed: satisfied | further testing needed inapplicable: satisfied | further testing needed -aria11:anchor-name: # +aria12:anchor-name: # title: Title to display forConformance: true | false failed: not satisfied From cff93c0e77edc9e83a0e39d632f84f2a9c64c5d9 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 5 Jan 2023 13:27:04 +0000 Subject: [PATCH 06/11] Update manual-template-empty.md --- pages/design/manual-template-empty.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index ecb7ce8d1ff..4d6f704cb92 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -1,11 +1,10 @@ +--- This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). -For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions until the --- before "id:" (delete rows 1-6). +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the -- and before "id:" (delete rows 2-7). Save the finished rule with the Title to display or success criterion aspect being tested. ---- - id: name: rule_type: atomic From 0561237c1986d49209bf0a403cba73f8bcc3df98 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 5 Jan 2023 13:28:32 +0000 Subject: [PATCH 07/11] Update manual-template-empty.md --- pages/design/manual-template-empty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 4d6f704cb92..86bc4ee2fd1 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -1,7 +1,7 @@ --- This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). -For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the -- and before "id:" (delete rows 2-7). +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 2-7). Save the finished rule with the Title to display or success criterion aspect being tested. From 208b5946a6aa23f80f74354f96cf114a3ee0c6d8 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 5 Jan 2023 13:30:07 +0000 Subject: [PATCH 08/11] Update manual-template-empty.md --- pages/design/manual-template-empty.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 86bc4ee2fd1..8107f5eb8b2 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -1,10 +1,10 @@ --- -This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). - -For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 2-7). - -Save the finished rule with the Title to display or success criterion aspect being tested. - +# This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). +# +# For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 2-7). +# +# Save the finished rule with the Title to display or success criterion aspect being tested. +# id: name: rule_type: atomic From c412609933769b0650c74422cc6d96e60444c3f6 Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 5 Jan 2023 13:33:57 +0000 Subject: [PATCH 09/11] Update manual-template-empty.md --- pages/design/manual-template-empty.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 8107f5eb8b2..352861f6613 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -1,10 +1,4 @@ --- -# This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). -# -# For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 2-7). -# -# Save the finished rule with the Title to display or success criterion aspect being tested. -# id: name: rule_type: atomic @@ -41,6 +35,11 @@ input_aspects: previous_authors: - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) --- +This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). + +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 38-41). + +Save the finished rule with the Title to display or success criterion aspect being tested. ## Applicability From d7fb620e30af0ee49a1ddaa601ca58f6174ca7d6 Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 5 Jan 2023 14:34:53 +0100 Subject: [PATCH 10/11] Reformat frontmatter --- pages/design/manual-template-empty.md | 58 +++++++++++++-------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 352861f6613..6140f337ea3 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -3,37 +3,37 @@ id: name: rule_type: atomic description: | -This rule checks ... + This rule checks ... accessibility_requirements: # Remove whatever is not applicable -wcag20:x.x.x: # (A | AA | AAA) -forConformance: true | false -failed: not satisfied -passed: satisfied | further testing needed -inapplicable: satisfied | further testing needed -aria12:anchor-name: # -title: Title to display -forConformance: true | false -failed: not satisfied -passed: satisfied | further testing needed -inapplicable: satisfied | further testing needed -wcag-technique:Xxx: # -forConformance: false -failed: not satisfied -passed: satisfied | further testing needed -inapplicable: satisfied | further testing needed -using-aria:anchor-name: # -title: Title to display -forConformance: false -failed: not satisfied -passed: satisfied | further testing needed -inapplicable: satisfied | further testing needed + wcag20:x.x.x: # (A | AA | AAA) + forConformance: true | false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + aria12:anchor-name: # + title: Title to display + forConformance: true | false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + wcag-technique:Xxx: # + forConformance: false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed + using-aria:anchor-name: # + title: Title to display + forConformance: false + failed: not satisfied + passed: satisfied | further testing needed + inapplicable: satisfied | further testing needed input_aspects: - -- # (e.g. HTTP Messages, DOM Tree, CSS Styling, Accessibility Tree, Language, etc.,) - acknowledgments: - authors: - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) - previous_authors: - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) - + - # (e.g. HTTP Messages, DOM Tree, CSS Styling, Accessibility Tree, Language, etc.,) +acknowledgments: + authors: + - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) + previous_authors: + - # (full names as found in `contributors` property in `package.json` - if not yet listed, please have authors added to the list) --- This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). From 28b63983379d586e3981ff3040f5f2c23f3e5cfd Mon Sep 17 00:00:00 2001 From: HelenBurge <41951878+HelenBurge@users.noreply.github.com> Date: Thu, 19 Jan 2023 13:45:25 +0000 Subject: [PATCH 11/11] Update pages/design/manual-template-empty.md Co-authored-by: Jean-Yves Moyen --- pages/design/manual-template-empty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/design/manual-template-empty.md b/pages/design/manual-template-empty.md index 6140f337ea3..ad3e29d955e 100644 --- a/pages/design/manual-template-empty.md +++ b/pages/design/manual-template-empty.md @@ -37,7 +37,7 @@ acknowledgments: --- This is the template for the manual test rules. It matches the automation rules but there are parts that can be completed with help from other community members (like adding examples of code). -For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "id:" (delete rows 38-41). +For the starting section, and examples, complete what you feel comfortable with and then ask for help via emails to the chairs of the ACT Task Force and Community Group. Delete these instructions after the --- and before "## Applicability" (delete rows 38-42). Save the finished rule with the Title to display or success criterion aspect being tested.