From 94f1cc1e904188a46854280a3466f54c2b6afd08 Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Thu, 3 Feb 2022 15:09:02 -0500
Subject: [PATCH 1/8] script change
---
.github/workflows/generate-and-commit-files.yml | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/generate-and-commit-files.yml b/.github/workflows/generate-and-commit-files.yml
index e99397d64..bc8a7af03 100644
--- a/.github/workflows/generate-and-commit-files.yml
+++ b/.github/workflows/generate-and-commit-files.yml
@@ -1,6 +1,6 @@
name: Generate and Commit Files
-on: pull_request
+on: pull_request_target
jobs:
generate-and-commit-files:
@@ -9,7 +9,8 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
- ref: ${{ github.head_ref }}
+ ref: refs/pull/${{ github.event.pull_request.number }}/head
+ # ref: ${{github.event.pull_request.head.ref}}
- name: Use Node.js
uses: actions/setup-node@v1
@@ -19,12 +20,6 @@ jobs:
- name: Install dependencies
run: npm ci
- # - name: Generate test files
- # run: npm run create-all-tests
-
- # - name: Generate review files
- # run: npm run review-tests
-
- name: Generate test and review files
run: npm run build
From a0220418a22e487e1509f83bd815a08ce8210968 Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:02:11 -0500
Subject: [PATCH 2/8] script change
---
.github/workflows/generate-and-commit-files.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/generate-and-commit-files.yml b/.github/workflows/generate-and-commit-files.yml
index bc8a7af03..61a4caa5b 100644
--- a/.github/workflows/generate-and-commit-files.yml
+++ b/.github/workflows/generate-and-commit-files.yml
@@ -9,8 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
+ fetch-depth: 0
ref: refs/pull/${{ github.event.pull_request.number }}/head
# ref: ${{github.event.pull_request.head.ref}}
+ # ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v1
@@ -33,7 +35,10 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
- ref: ${{ github.head_ref }}
+ fetch-depth: 0
+ ref: refs/pull/${{ github.event.pull_request.number }}/head
+ # ref: ${{github.event.pull_request.head.ref}}
+ # ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v1
From 4bb8d8d507f013a69f1fc40f5057c06a50bb7ce4 Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:07:02 -0500
Subject: [PATCH 3/8] script change
---
.github/workflows/update-pr.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/update-pr.yml b/.github/workflows/update-pr.yml
index 91a945610..c406d3800 100644
--- a/.github/workflows/update-pr.yml
+++ b/.github/workflows/update-pr.yml
@@ -11,6 +11,6 @@ jobs:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
head-branch-regex: '.*'
title-template: ''
- body-template: '[Preview Tests](https://raw.githack.com/w3c/aria-at/%headbranch%/build/index.html)'
+ body-template: '[Preview Tests](https://raw.githack.com/howard-e/aria-at/%headbranch%/build/index.html)'
body-update-action: prefix
body-uppercase-head-match: false
From 2a479a8704864b5865cf048d0472ed773fdf9947 Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:32:40 -0500
Subject: [PATCH 4/8] script change
---
.github/workflows/generate-and-commit-files.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/generate-and-commit-files.yml b/.github/workflows/generate-and-commit-files.yml
index 61a4caa5b..737750262 100644
--- a/.github/workflows/generate-and-commit-files.yml
+++ b/.github/workflows/generate-and-commit-files.yml
@@ -1,6 +1,6 @@
name: Generate and Commit Files
-on: pull_request_target
+on: pull_request
jobs:
generate-and-commit-files:
From 85bda19017bfbec36959a87da6416a7a589cabef Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:38:13 -0500
Subject: [PATCH 5/8] script change
---
.github/workflows/generate-and-commit-files.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/generate-and-commit-files.yml b/.github/workflows/generate-and-commit-files.yml
index 737750262..05a3f9d48 100644
--- a/.github/workflows/generate-and-commit-files.yml
+++ b/.github/workflows/generate-and-commit-files.yml
@@ -10,9 +10,9 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- ref: refs/pull/${{ github.event.pull_request.number }}/head
+ ref: ${{ github.head_ref }}
+ # ref: refs/pull/${{ github.event.pull_request.number }}/head
# ref: ${{github.event.pull_request.head.ref}}
- # ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v1
@@ -36,9 +36,9 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- ref: refs/pull/${{ github.event.pull_request.number }}/head
+ ref: ${{ github.head_ref }}
+ # ref: refs/pull/${{ github.event.pull_request.number }}/head
# ref: ${{github.event.pull_request.head.ref}}
- # ref: ${{ github.head_ref }}
- name: Use Node.js
uses: actions/setup-node@v1
From 927c75050441ce3b59e2a1610aa9f04c65fbcb63 Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:44:52 -0500
Subject: [PATCH 6/8] script change
---
.github/workflows/generate-and-commit-files.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/generate-and-commit-files.yml b/.github/workflows/generate-and-commit-files.yml
index 05a3f9d48..840fe858b 100644
--- a/.github/workflows/generate-and-commit-files.yml
+++ b/.github/workflows/generate-and-commit-files.yml
@@ -10,8 +10,8 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- ref: ${{ github.head_ref }}
- # ref: refs/pull/${{ github.event.pull_request.number }}/head
+ ref: refs/pull/${{ github.event.pull_request.number }}/head
+ # ref: ${{ github.head_ref }}
# ref: ${{github.event.pull_request.head.ref}}
- name: Use Node.js
@@ -36,8 +36,8 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- ref: ${{ github.head_ref }}
- # ref: refs/pull/${{ github.event.pull_request.number }}/head
+ ref: refs/pull/${{ github.event.pull_request.number }}/head
+ # ref: ${{ github.head_ref }}
# ref: ${{github.event.pull_request.head.ref}}
- name: Use Node.js
From 935a9677b7287f11c42f4c14b645d10d19c84f9d Mon Sep 17 00:00:00 2001
From: Howard Edwards
Date: Fri, 4 Feb 2022 10:45:18 -0500
Subject: [PATCH 7/8] script change
---
tests/alert-test/data/commands.csv | 6 +++
tests/alert-test/data/js/setFocusOnButton.js | 2 +
tests/alert-test/data/references.csv | 10 +++++
tests/alert-test/data/tests.csv | 4 ++
.../reference/2021-10-15_143458/alert.html | 37 +++++++++++++++++++
.../reference/2021-10-15_143458/css/alert.css | 10 +++++
.../reference/2021-10-15_143458/js/alert.js | 29 +++++++++++++++
7 files changed, 98 insertions(+)
create mode 100644 tests/alert-test/data/commands.csv
create mode 100644 tests/alert-test/data/js/setFocusOnButton.js
create mode 100644 tests/alert-test/data/references.csv
create mode 100644 tests/alert-test/data/tests.csv
create mode 100644 tests/alert-test/reference/2021-10-15_143458/alert.html
create mode 100644 tests/alert-test/reference/2021-10-15_143458/css/alert.css
create mode 100644 tests/alert-test/reference/2021-10-15_143458/js/alert.js
diff --git a/tests/alert-test/data/commands.csv b/tests/alert-test/data/commands.csv
new file mode 100644
index 000000000..0ea51a223
--- /dev/null
+++ b/tests/alert-test/data/commands.csv
@@ -0,0 +1,6 @@
+testId,task,mode,at,commandA,commandB,commandC,commandD,commandE,commandF
+1,trigger alert,reading,JAWS,SPACE,ENTER,,,,
+1,trigger alert,reading,NVDA,SPACE,ENTER,,,,
+2,trigger alert,interaction,JAWS,SPACE,ENTER,,,,
+2,trigger alert,interaction,NVDA,SPACE,ENTER,,,,
+3,trigger alert,interaction,voiceover_macos,CTRL_OPT_SPACE,SPACE,ENTER,,,
diff --git a/tests/alert-test/data/js/setFocusOnButton.js b/tests/alert-test/data/js/setFocusOnButton.js
new file mode 100644
index 000000000..d4f16566b
--- /dev/null
+++ b/tests/alert-test/data/js/setFocusOnButton.js
@@ -0,0 +1,2 @@
+// sets focus on the 'Trigger Alert' button
+testPageDocument.querySelector('#alert-trigger').focus();
diff --git a/tests/alert-test/data/references.csv b/tests/alert-test/data/references.csv
new file mode 100644
index 000000000..a7da95a76
--- /dev/null
+++ b/tests/alert-test/data/references.csv
@@ -0,0 +1,10 @@
+refId,value
+author,Isabel Del Castillo
+authorEmail,isa.delcastillo5@gmail.com
+title,Alert Example
+reference,reference/2021-10-15_143458/alert.html
+designPattern,https://w3c.github.io/aria-practices/#alert
+example,https://w3c.github.io/aria-practices/examples/alert/alert.html
+alert,https://w3c.github.io/aria/#alert
+aria-live,https://w3c.github.io/aria/#aria-live)
+aria-atomic,https://w3c.github.io/aria/#aria-atomic
\ No newline at end of file
diff --git a/tests/alert-test/data/tests.csv b/tests/alert-test/data/tests.csv
new file mode 100644
index 000000000..9f677c808
--- /dev/null
+++ b/tests/alert-test/data/tests.csv
@@ -0,0 +1,4 @@
+testId,title,appliesTo,mode,task,setupScript,setupScriptDescription,refs,instructions,assertion1,assertion2,assertion3,assertion4,assertion5,assertion6,assertion7
+1,Trigger an alert in reading mode,"JAWS,NVDA",reading,trigger alert,setFocusOnButton,sets focus on the 'Trigger Alert' button,alert,"With the reading cursor on the 'Trigger Alert' button, activate the button to trigger the alert.",Role 'alert' is conveyed,Text 'Hello' is conveyed,,,,,
+2,Trigger an alert in interaction mode,"JAWS,NVDA",interaction,trigger alert,setFocusOnButton,sets focus on the 'Trigger Alert' button,alert,"With focus on the 'Trigger Alert' button, activate the button to trigger the alert.",Role 'alert' is conveyed,Text 'Hello' is conveyed,,,,,
+3,Trigger an alert,voiceover_macos,interaction,trigger alert,setFocusOnButton,sets focus on the 'Trigger Alert' button,alert,"With focus on the 'Trigger Alert' button, activate the button to trigger the alert.",Role 'alert' is conveyed,Text 'Hello' is conveyed,,,,,
diff --git a/tests/alert-test/reference/2021-10-15_143458/alert.html b/tests/alert-test/reference/2021-10-15_143458/alert.html
new file mode 100644
index 000000000..ac8342434
--- /dev/null
+++ b/tests/alert-test/reference/2021-10-15_143458/alert.html
@@ -0,0 +1,37 @@
+
+
+
+
+ Alert Example
+
+
+
+
+
+
+
+ Alert Example
+
+ The below example demonstrates the design pattern for alert .
+ Activating the Trigger Alert button causes a message to be inserted into the example alert element.
+
+
+
+
+
+
Trigger Alert
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tests/alert-test/reference/2021-10-15_143458/css/alert.css b/tests/alert-test/reference/2021-10-15_143458/css/alert.css
new file mode 100644
index 000000000..b11f1faa4
--- /dev/null
+++ b/tests/alert-test/reference/2021-10-15_143458/css/alert.css
@@ -0,0 +1,10 @@
+[role="alert"] {
+ padding: 10px;
+ border: 2px solid hsl(206, 74%, 54%);
+ border-radius: 4px;
+ background: hsl(206, 74%, 90%);
+}
+
+[role="alert"]:empty {
+ display: none;
+}
diff --git a/tests/alert-test/reference/2021-10-15_143458/js/alert.js b/tests/alert-test/reference/2021-10-15_143458/js/alert.js
new file mode 100644
index 000000000..d30af7a33
--- /dev/null
+++ b/tests/alert-test/reference/2021-10-15_143458/js/alert.js
@@ -0,0 +1,29 @@
+/*
+ * This content is licensed according to the W3C Software License at
+ * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
+ *
+ */
+
+'use strict';
+
+window.addEventListener('load', function () {
+ var button = document.getElementById('alert-trigger');
+
+ button.addEventListener('click', addAlert);
+});
+
+/*
+ * @function addAlert
+ *
+ * @desc Adds an alert to the page
+ *
+ * @param {object} event - Standard W3C event object
+ *
+ */
+
+function addAlert() {
+ var example = document.getElementById('example');
+ var template = document.getElementById('alert-template').innerHTML;
+
+ example.innerHTML = template;
+}
From 948911b96aa0743ddb3c9ad124061916ad248580 Mon Sep 17 00:00:00 2001
From: howard-e
Date: Fri, 4 Feb 2022 15:47:00 +0000
Subject: [PATCH 8/8] Generate test and review files automatically
---
build/index.html | 69 +-
build/review/alert-test.html | 1044 +++++++++++++++++
build/review/alert.html | 9 +-
build/review/banner.html | 55 +-
build/review/breadcrumb.html | 21 +-
build/review/checkbox-tri-state.html | 51 +-
build/review/checkbox.html | 55 +-
.../combobox-autocomplete-both-updated.html | 155 +--
build/review/combobox-select-only.html | 79 +-
build/review/command-button.html | 21 +-
build/review/complementary.html | 43 +-
build/review/contentinfo.html | 35 +-
build/review/datepicker-spin-button.html | 45 +-
build/review/disclosure-faq.html | 55 +-
build/review/disclosure-navigation.html | 95 +-
build/review/form.html | 43 +-
build/review/horizontal-slider.html | 45 +-
build/review/main.html | 35 +-
...menu-button-actions-active-descendant.html | 55 +-
build/review/menu-button-actions.html | 55 +-
build/review/menubar-editor.html | 83 +-
build/review/meter.html | 21 +-
build/review/minimal-data-grid.html | 113 +-
build/review/modal-dialog.html | 61 +-
.../radiogroup-aria-activedescendant.html | 81 +-
build/review/radiogroup-roving-tabindex.html | 81 +-
build/review/rating-slider.html | 45 +-
build/review/seek-slider.html | 45 +-
build/review/switch.html | 51 +-
build/review/tabs-manual-activation.html | 61 +-
build/review/toggle-button.html | 51 +-
build/review/vertical-temperature-slider.html | 45 +-
build/tests/alert-test/commands.json | 17 +
build/tests/alert-test/index.html | 79 ++
.../reference/2021-10-15_143458/alert.html | 58 +
.../alert.setFocusOnButton.html | 60 +
.../reference/2021-10-15_143458/css/alert.css | 10 +
.../reference/2021-10-15_143458/js/alert.js | 29 +
build/tests/alert-test/scripts.jsonp.js | 6 +
build/tests/alert-test/scripts.module.js | 4 +
.../scripts/setFocusOnButton.jsonp.js | 6 +
.../scripts/setFocusOnButton.module.js | 4 +
...-trigger-alert-reading-jaws.collected.html | 72 ++
...-trigger-alert-reading-jaws.collected.json | 72 ++
...-trigger-alert-reading-nvda.collected.html | 72 ++
...-trigger-alert-reading-nvda.collected.json | 72 ++
.../test-01-trigger-alert-reading.html | 67 ++
.../test-01-trigger-alert-reading.json | 21 +
...gger-alert-interaction-jaws.collected.html | 72 ++
...gger-alert-interaction-jaws.collected.json | 72 ++
...gger-alert-interaction-nvda.collected.html | 72 ++
...gger-alert-interaction-nvda.collected.json | 72 ++
.../test-02-trigger-alert-interaction.html | 67 ++
.../test-02-trigger-alert-interaction.json | 21 +
...interaction-voiceover_macos.collected.html | 72 ++
...interaction-voiceover_macos.collected.json | 82 ++
.../test-03-trigger-alert-interaction.html | 66 ++
.../test-03-trigger-alert-interaction.json | 20 +
58 files changed, 3238 insertions(+), 830 deletions(-)
create mode 100644 build/review/alert-test.html
create mode 100644 build/tests/alert-test/commands.json
create mode 100644 build/tests/alert-test/index.html
create mode 100644 build/tests/alert-test/reference/2021-10-15_143458/alert.html
create mode 100644 build/tests/alert-test/reference/2021-10-15_143458/alert.setFocusOnButton.html
create mode 100644 build/tests/alert-test/reference/2021-10-15_143458/css/alert.css
create mode 100644 build/tests/alert-test/reference/2021-10-15_143458/js/alert.js
create mode 100644 build/tests/alert-test/scripts.jsonp.js
create mode 100644 build/tests/alert-test/scripts.module.js
create mode 100644 build/tests/alert-test/scripts/setFocusOnButton.jsonp.js
create mode 100644 build/tests/alert-test/scripts/setFocusOnButton.module.js
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading-jaws.collected.html
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading-jaws.collected.json
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading-nvda.collected.html
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading-nvda.collected.json
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading.html
create mode 100644 build/tests/alert-test/test-01-trigger-alert-reading.json
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction-jaws.collected.html
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction-jaws.collected.json
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction-nvda.collected.html
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction-nvda.collected.json
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction.html
create mode 100644 build/tests/alert-test/test-02-trigger-alert-interaction.json
create mode 100644 build/tests/alert-test/test-03-trigger-alert-interaction-voiceover_macos.collected.html
create mode 100644 build/tests/alert-test/test-03-trigger-alert-interaction-voiceover_macos.collected.json
create mode 100644 build/tests/alert-test/test-03-trigger-alert-interaction.html
create mode 100644 build/tests/alert-test/test-03-trigger-alert-interaction.json
diff --git a/build/index.html b/build/index.html
index dc0956ac3..7ce3d6ab9 100644
--- a/build/index.html
+++ b/build/index.html
@@ -40,7 +40,15 @@ Test Patterns for Review
Index
Review
3
- 2f3b59b Hide setup button as needed
+ 9ccc7888 Add Alert and Breadcrumb test plan titles (#529)
+
+
+
+ alert-test
+ Index
+ Review
+ 3
+ 935a9677 script change
@@ -48,7 +56,7 @@ Test Patterns for Review
Index
Review
26
- 2f3b59b Hide setup button as needed
+ 0c61f715 Revert "Update JAWS commands for banner landmark tests, in line with JAWS 2022 updates" (#602)
@@ -56,7 +64,7 @@ Test Patterns for Review
Index
Review
9
- 2f3b59b Hide setup button as needed
+ a2434b1e Breadcrumb: fix misquoted strings in commands.csv (#540)
@@ -64,7 +72,7 @@ Test Patterns for Review
Index
Review
26
- 2f3b59b Hide setup button as needed
+ c2df595d Move test plan titles for app from support.json to references.csv (#473)
@@ -72,7 +80,7 @@ Test Patterns for Review
Index
Review
24
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -80,7 +88,7 @@ Test Patterns for Review
Index
Review
76
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -88,7 +96,7 @@ Test Patterns for Review
Index
Review
38
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -96,7 +104,7 @@ Test Patterns for Review
Index
Review
9
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -104,7 +112,7 @@ Test Patterns for Review
Index
Review
20
- 2f3b59b Hide setup button as needed
+ 03b8747f Create tests for APG design pattern example: Contentinfo Landmark (#549)
@@ -112,7 +120,7 @@ Test Patterns for Review
Index
Review
16
- 2f3b59b Hide setup button as needed
+ 03b8747f Create tests for APG design pattern example: Contentinfo Landmark (#549)
@@ -120,7 +128,7 @@ Test Patterns for Review
Index
Review
21
- 2f3b59b Hide setup button as needed
+ 0483d7ea Create tests for APG design pattern example: Date Picker Spin Button (#411)
@@ -128,7 +136,7 @@ Test Patterns for Review
Index
Review
26
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -136,7 +144,7 @@ Test Patterns for Review
Index
Review
46
- 2f3b59b Hide setup button as needed
+ b2ceec70 Remove Space from tests 45 and 46 in disclosure navigation test plan (#585)
@@ -144,7 +152,7 @@ Test Patterns for Review
Index
Review
20
- 2f3b59b Hide setup button as needed
+ 53792c23 Create tests for APG design pattern example: Form Landmark (#551)
@@ -152,7 +160,7 @@ Test Patterns for Review
Index
Review
21
- 2f3b59b Hide setup button as needed
+ 49e2a000 Create tests for APG design pattern example: Color Viewer Slider (#414)
@@ -160,14 +168,15 @@ Test Patterns for Review
Index
Review
16
-
+ 4ed847af Create tests for APG design pattern example: Main Landmark (#553)
+
menu-button-actions
Index
Review
26
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -175,7 +184,7 @@ Test Patterns for Review
Index
Review
26
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -183,7 +192,7 @@ Test Patterns for Review
Index
Review
40
- 2f3b59b Hide setup button as needed
+ 05c4cf59 Standardize code style (#484)
@@ -191,7 +200,7 @@ Test Patterns for Review
Index
Review
9
- 2f3b59b Hide setup button as needed
+ 0177f9e7 Create tests for APG design pattern example: meter (#571)
@@ -199,7 +208,7 @@ Test Patterns for Review
Index
Review
55
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -207,7 +216,7 @@ Test Patterns for Review
Index
Review
29
- 2f3b59b Hide setup button as needed
+ 04ed13d5 Fix typo in modal-dialog metadata (#527)
@@ -215,7 +224,7 @@ Test Patterns for Review
Index
Review
39
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -223,7 +232,7 @@ Test Patterns for Review
Index
Review
39
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -231,7 +240,7 @@ Test Patterns for Review
Index
Review
21
- 2f3b59b Hide setup button as needed
+ b5c67ace Create tests for APG design pattern example: Vertical Temperature Slider (#487)
@@ -239,7 +248,7 @@ Test Patterns for Review
Index
Review
21
- 2f3b59b Hide setup button as needed
+ 22c9895b Create tests for APG design pattern example: Media Seek Slider (#488)
@@ -247,7 +256,7 @@ Test Patterns for Review
Index
Review
24
- 2f3b59b Hide setup button as needed
+ d3b62389 Create tests for APG design pattern example: Switch (#543)
@@ -255,7 +264,7 @@ Test Patterns for Review
Index
Review
29
- 2f3b59b Hide setup button as needed
+ 091420a1 Add title reference field to each test plan (#521)
@@ -263,7 +272,7 @@ Test Patterns for Review
Index
Review
24
- 2f3b59b Hide setup button as needed
+ acc6cb13 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for (#532)
@@ -271,7 +280,7 @@ Test Patterns for Review
Index
Review
21
- 2f3b59b Hide setup button as needed
+ b5c67ace Create tests for APG design pattern example: Vertical Temperature Slider (#487)
diff --git a/build/review/alert-test.html b/build/review/alert-test.html
new file mode 100644
index 000000000..bac6c456e
--- /dev/null
+++ b/build/review/alert-test.html
@@ -0,0 +1,1044 @@
+
+
+
+
+ Test plan review for pattern: alert-test
+
+
+
+
+
+ Test plan review for pattern: alert-test (3 tests)
+
+
+ Filter tests by assistive technology
+ All assistive technologies
+ JAWS
+ NVDA
+ VoiceOver for macOS
+
+
+ Test 1: Trigger an alert in reading mode
+
+
+ Mode: reading
+ Applies to: jaws, nvda
+ Last edited:
+ Tests:
+
+
+ Relevant Specifications:
+
+
+
+
+ Open Test 1 Page
+
+
+
JAWS
+
Scripted Instructions
+ The following instructions are executed by a script in the test page to initialize the widget:
+
+ sets focus on the 'Trigger Alert' button
+
+
Tester Instructions
+
+
+ Verify the Virtual Cursor is active by pressing Alt+Delete. If it is not, turn on the Virtual Cursor by pressing Insert+Z.
+ With the reading cursor on the 'Trigger Alert' button, activate the button to trigger the alert. using the following commands:
+
+
+
+
+
Assertions
+
+ Priority Assertion
+ required Role 'alert' is conveyed
+ required Text 'Hello' is conveyed
+
+
+
+
NVDA
+
Scripted Instructions
+ The following instructions are executed by a script in the test page to initialize the widget:
+
+ sets focus on the 'Trigger Alert' button
+
+
Tester Instructions
+
+
+ Insure NVDA is in browse mode by pressing Escape. Note: This command has no effect if NVDA is already in browse mode.
+ With the reading cursor on the 'Trigger Alert' button, activate the button to trigger the alert. using the following commands:
+
+
+
+
+
Assertions
+
+ Priority Assertion
+ required Role 'alert' is conveyed
+ required Text 'Hello' is conveyed
+
+
+ Test 2: Trigger an alert in interaction mode
+
+
+ Mode: interaction
+ Applies to: jaws, nvda
+ Last edited:
+ Tests:
+
+
+ Relevant Specifications:
+
+
+
+
+ Open Test 2 Page
+
+
+
JAWS
+
Scripted Instructions
+ The following instructions are executed by a script in the test page to initialize the widget:
+
+ sets focus on the 'Trigger Alert' button
+
+
Tester Instructions
+
+
+ Verify the PC Cursor is active by pressing Alt+Delete. If it is not, turn off the Virtual Cursor by pressing Insert+Z.
+ With focus on the 'Trigger Alert' button, activate the button to trigger the alert. using the following commands:
+
+
+
+
+
Assertions
+
+ Priority Assertion
+ required Role 'alert' is conveyed
+ required Text 'Hello' is conveyed
+
+
+
+
NVDA
+
Scripted Instructions
+ The following instructions are executed by a script in the test page to initialize the widget:
+
+ sets focus on the 'Trigger Alert' button
+
+
Tester Instructions
+
+
+ If NVDA did not make the focus mode sound when the test page loaded, press Insert+Space to turn focus mode on.
+ With focus on the 'Trigger Alert' button, activate the button to trigger the alert. using the following commands:
+
+
+
+
+
Assertions
+
+ Priority Assertion
+ required Role 'alert' is conveyed
+ required Text 'Hello' is conveyed
+
+
+ Test 3: Trigger an alert
+
+
+ Mode: interaction
+ Applies to: voiceover_macos
+ Last edited:
+ Tests:
+
+
+ Relevant Specifications:
+
+
+
+
+ Open Test 3 Page
+
+
+
VoiceOver for macOS
+
Scripted Instructions
+ The following instructions are executed by a script in the test page to initialize the widget:
+
+ sets focus on the 'Trigger Alert' button
+
+
Tester Instructions
+
+
+ Toggle Quick Nav OFF by pressing the Left Arrow and Right Arrow keys at the same time.
+ With focus on the 'Trigger Alert' button, activate the button to trigger the alert. using the following commands:
+
+ Control+Option+Space
+ Space
+ Enter
+
+
+
+
+
Assertions
+
+ Priority Assertion
+ required Role 'alert' is conveyed
+ required Text 'Hello' is conveyed
+
+
+
+
+
diff --git a/build/review/alert.html b/build/review/alert.html
index cc37aa89c..13c749cb0 100644
--- a/build/review/alert.html
+++ b/build/review/alert.html
@@ -63,6 +63,9 @@
setFocusOnButton: function(testPageDocument){
// sets focus on the 'Trigger Alert' button
testPageDocument.querySelector('#alert-trigger').focus();
+}, setFocusOnButton: function(testPageDocument){
+ // sets focus on the 'Trigger Alert' button
+ testPageDocument.querySelector('#alert-trigger').focus();
}, setFocusAfterBanner: function(testPageDocument){
// sets focus on a link after the banner landmark
testPageDocument.getElementById('afterlink').focus();
@@ -842,7 +845,7 @@ Test 1: Trigger an alert in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 14:44:12 2021 -0500
Tests:
jaws
@@ -917,7 +920,7 @@ Test 2: Trigger an alert in interaction mode
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 14:44:12 2021 -0500
Tests:
jaws
@@ -992,7 +995,7 @@ Test 3: Trigger an alert
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 14:44:12 2021 -0500
Tests:
voiceover_macos
diff --git a/build/review/banner.html b/build/review/banner.html
index ffabe0022..dd97a09b9 100644
--- a/build/review/banner.html
+++ b/build/review/banner.html
@@ -63,6 +63,9 @@
setFocusOnButton: function(testPageDocument){
// sets focus on the 'Trigger Alert' button
testPageDocument.querySelector('#alert-trigger').focus();
+}, setFocusOnButton: function(testPageDocument){
+ // sets focus on the 'Trigger Alert' button
+ testPageDocument.querySelector('#alert-trigger').focus();
}, setFocusAfterBanner: function(testPageDocument){
// sets focus on a link after the banner landmark
testPageDocument.getElementById('afterlink').focus();
@@ -842,7 +845,7 @@ Test 1: Navigate forwards into a banner landmark in readin
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -924,7 +927,7 @@ Test 2: Navigate forwards into a banner landmark in intera
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -999,7 +1002,7 @@ Test 3: Navigate forwards into a banner landmark
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
voiceover_macos
@@ -1048,7 +1051,7 @@ Test 4: Navigate backwards into a banner landmark in readi
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
jaws
@@ -1128,7 +1131,7 @@ Test 5: Navigate backwards into a banner landmark in inter
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
jaws
@@ -1203,7 +1206,7 @@ Test 6: Navigate backwards into a banner landmark
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
voiceover_macos
@@ -1252,7 +1255,7 @@ Test 7: Navigate forwards out of a banner landmark in read
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -1330,7 +1333,7 @@ Test 8: Navigate forwards out of a banner landmark in inte
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -1405,7 +1408,7 @@ Test 9: Navigate forwards out of a banner landmark
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
voiceover_macos
@@ -1454,7 +1457,7 @@ Test 10: Navigate backwards out of a banner landmark in re
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -1532,7 +1535,7 @@ Test 11: Navigate backwards out of a banner landmark in in
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -1607,7 +1610,7 @@ Test 12: Navigate backwards out of a banner landmark
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
voiceover_macos
@@ -1656,7 +1659,7 @@ Test 13: Navigate forwards to a button inside a banner lan
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -1741,7 +1744,7 @@ Test 14: Navigate forwards to a button inside a banner lan
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
jaws
@@ -1822,7 +1825,7 @@ Test 15: Navigate forwards to a button inside a bann
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 18:09:54 2022 -0600
Tests:
voiceover_macos
@@ -1876,7 +1879,7 @@ Test 16: Navigate backwards to a button inside a banner la
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
jaws
@@ -1958,7 +1961,7 @@ Test 17: Navigate backwards to a button inside a banner la
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
jaws
@@ -2036,7 +2039,7 @@ Test 18: Navigate backwards to a button inside a ban
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 17:43:41 2022 -0600
Tests:
voiceover_macos
@@ -2088,7 +2091,7 @@ Test 19: Navigate forwards to an image inside a banner lan
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -2163,7 +2166,7 @@ Test 20: Navigate forwards to an image inside a bann
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
voiceover_macos
@@ -2211,7 +2214,7 @@ Test 21: Navigate backwards to an image inside a banner la
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -2286,7 +2289,7 @@ Test 22: Navigate backwards to an image inside a ban
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
voiceover_macos
@@ -2334,7 +2337,7 @@ Test 23: Navigate forwards to a heading inside a banner la
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -2413,7 +2416,7 @@ Test 24: Navigate forwards to a heading inside a ban
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
voiceover_macos
@@ -2462,7 +2465,7 @@ Test 25: Navigate backwards to a heading inside a banner l
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
jaws
@@ -2541,7 +2544,7 @@ Test 26: Navigate backwards to a heading inside a ba
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jan 4 15:33:20 2022 -0600
Tests:
voiceover_macos
diff --git a/build/review/breadcrumb.html b/build/review/breadcrumb.html
index 01b4101f4..325367c77 100644
--- a/build/review/breadcrumb.html
+++ b/build/review/breadcrumb.html
@@ -63,6 +63,9 @@
setFocusOnButton: function(testPageDocument){
// sets focus on the 'Trigger Alert' button
testPageDocument.querySelector('#alert-trigger').focus();
+}, setFocusOnButton: function(testPageDocument){
+ // sets focus on the 'Trigger Alert' button
+ testPageDocument.querySelector('#alert-trigger').focus();
}, setFocusAfterBanner: function(testPageDocument){
// sets focus on a link after the banner landmark
testPageDocument.getElementById('afterlink').focus();
@@ -842,7 +845,7 @@ Test 1: Navigate to the first breadcrumb link in reading m
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
jaws
@@ -931,7 +934,7 @@ Test 2: Navigate to the last breadcrumb link in reading mo
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
jaws
@@ -1023,7 +1026,7 @@ Test 3: Navigate to the first breadcrumb link in interacti
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
jaws
@@ -1104,7 +1107,7 @@ Test 4: Navigate to the last breadcrumb link in interactio
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
jaws
@@ -1188,7 +1191,7 @@ Test 5: Navigate to the first breadcrumb link
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
voiceover_macos
@@ -1240,7 +1243,7 @@ Test 6: Navigate to the last breadcrumb link
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 22 14:54:44 2021 -0500
Tests:
voiceover_macos
@@ -1294,7 +1297,7 @@ Test 7: Read information about a breadcrumb link in readin
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 16:23:29 2021 -0500
Tests:
jaws
@@ -1372,7 +1375,7 @@ Test 8: Read information about a breadcrumb link in intera
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 16:23:29 2021 -0500
Tests:
jaws
@@ -1450,7 +1453,7 @@ Test 9: Read information about a breadcrumb link
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 15 16:23:29 2021 -0500
Tests:
voiceover_macos
diff --git a/build/review/checkbox-tri-state.html b/build/review/checkbox-tri-state.html
index 19a4b5632..a6c7d51d9 100644
--- a/build/review/checkbox-tri-state.html
+++ b/build/review/checkbox-tri-state.html
@@ -63,6 +63,9 @@
setFocusOnButton: function(testPageDocument){
// sets focus on the 'Trigger Alert' button
testPageDocument.querySelector('#alert-trigger').focus();
+}, setFocusOnButton: function(testPageDocument){
+ // sets focus on the 'Trigger Alert' button
+ testPageDocument.querySelector('#alert-trigger').focus();
}, setFocusAfterBanner: function(testPageDocument){
// sets focus on a link after the banner landmark
testPageDocument.getElementById('afterlink').focus();
@@ -842,7 +845,7 @@ Test 1: Navigate forwards to a partially checked checkbox
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -924,7 +927,7 @@ Test 2: Navigate backwards to a partially checked checkbox
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1006,7 +1009,7 @@ Test 3: Navigate forwards to a partially checked checkbox
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1082,7 +1085,7 @@ Test 4: Navigate backwards to a partially checked checkbox
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1158,7 +1161,7 @@ Test 5: Navigate forwards to a partially checked che
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1209,7 +1212,7 @@ Test 6: Navigate backwards to a partially checked ch
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1260,7 +1263,7 @@ Test 7: Operate a partially checked checkbox in reading mo
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1331,7 +1334,7 @@ Test 8: Operate a partially checked checkbox in interactio
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1402,7 +1405,7 @@ Test 9: Operate a partially checked checkbox
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1449,7 +1452,7 @@ Test 10: Operate an unchecked checkbox in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1521,7 +1524,7 @@ Test 11: Operate an unchecked checkbox in interaction mode
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1593,7 +1596,7 @@ Test 12: Operate an unchecked checkbox
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1641,7 +1644,7 @@ Test 13: Read a partially checked checkbox in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1719,7 +1722,7 @@ Test 14: Read a partially checked checkbox in interaction
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1797,7 +1800,7 @@ Test 15: Read a partially checked checkbox
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1847,7 +1850,7 @@ Test 16: Read grouping information of a grouped, partially
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1919,7 +1922,7 @@ Test 17: Read grouping information of a grouped, partially
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1991,7 +1994,7 @@ Test 18: Read grouping information of a grouped, par
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -2038,7 +2041,7 @@ Test 19: Navigate forwards into a checkbox group in readin
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -2116,7 +2119,7 @@ Test 20: Navigate backwards out of a checkbox group in rea
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -2190,7 +2193,7 @@ Test 21: Navigate forwards into a checkbox group in intera
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -2264,7 +2267,7 @@ Test 22: Navigate backwards out of a checkbox group in int
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -2338,7 +2341,7 @@ Test 23: Navigate forwards into a checkbox group
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -2385,7 +2388,7 @@ Test 24: Navigate backwards out of a checkbox group<
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
diff --git a/build/review/checkbox.html b/build/review/checkbox.html
index 995593222..52d61c270 100644
--- a/build/review/checkbox.html
+++ b/build/review/checkbox.html
@@ -63,6 +63,9 @@
setFocusOnButton: function(testPageDocument){
// sets focus on the 'Trigger Alert' button
testPageDocument.querySelector('#alert-trigger').focus();
+}, setFocusOnButton: function(testPageDocument){
+ // sets focus on the 'Trigger Alert' button
+ testPageDocument.querySelector('#alert-trigger').focus();
}, setFocusAfterBanner: function(testPageDocument){
// sets focus on a link after the banner landmark
testPageDocument.getElementById('afterlink').focus();
@@ -842,7 +845,7 @@ Test 1: Navigate to an unchecked checkbox in reading mode<
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jun 29 16:13:31 2021 -0500
Tests:
jaws
@@ -915,7 +918,7 @@ Test 2: Navigate to an unchecked checkbox in interaction m
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jun 29 16:13:31 2021 -0500
Tests:
jaws
@@ -981,7 +984,7 @@ Test 3: Navigate to an unchecked checkbox
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jun 29 16:13:31 2021 -0500
Tests:
voiceover_macos
@@ -1027,7 +1030,7 @@ Test 4: Navigate to a checked checkbox in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1110,7 +1113,7 @@ Test 5: Navigate to a checked checkbox in interaction mode
Mode: interaction
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
jaws
@@ -1186,7 +1189,7 @@ Test 6: Navigate to a checked checkbox
Mode: interaction
Applies to: voiceover_macos
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Fri Oct 1 11:21:00 2021 -0400
Tests:
voiceover_macos
@@ -1237,7 +1240,7 @@ Test 7: Operate a checkbox in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jan 6 14:45:52 2022 -0600
+ Last edited: Tue Jun 29 16:13:31 2021 -0500
Tests: