diff --git a/build/index.html b/build/index.html
index a2a72aae6..24756ef21 100644
--- a/build/index.html
+++ b/build/index.html
@@ -40,7 +40,7 @@
Test Patterns for Review
Index |
Review |
3 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -48,7 +48,7 @@ Test Patterns for Review
Index |
Review |
9 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -56,7 +56,7 @@ Test Patterns for Review
Index |
Review |
26 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -64,7 +64,7 @@ Test Patterns for Review
Index |
Review |
24 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -72,7 +72,7 @@ Test Patterns for Review
Index |
Review |
76 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -80,7 +80,7 @@ Test Patterns for Review
Index |
Review |
38 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -88,7 +88,7 @@ Test Patterns for Review
Index |
Review |
9 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -96,7 +96,7 @@ Test Patterns for Review
Index |
Review |
26 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -104,7 +104,7 @@ Test Patterns for Review
Index |
Review |
46 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -112,7 +112,7 @@ Test Patterns for Review
Index |
Review |
26 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -120,7 +120,7 @@ Test Patterns for Review
Index |
Review |
26 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -128,7 +128,7 @@ Test Patterns for Review
Index |
Review |
40 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -136,7 +136,7 @@ Test Patterns for Review
Index |
Review |
55 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -144,7 +144,7 @@ Test Patterns for Review
Index |
Review |
29 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -152,7 +152,7 @@ Test Patterns for Review
Index |
Review |
39 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -160,7 +160,7 @@ Test Patterns for Review
Index |
Review |
39 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -168,7 +168,7 @@ Test Patterns for Review
Index |
Review |
29 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
@@ -176,7 +176,7 @@ Test Patterns for Review
Index |
Review |
24 |
- d35de00 replace example reference page closing tags for template
+ | 8f23809 Toggle Button: fix setup scripts to set state of button to 'pressed' in some cases which were previously not accounted for
|
diff --git a/build/review/alert.html b/build/review/alert.html
index 86524239e..51381382c 100644
--- a/build/review/alert.html
+++ b/build/review/alert.html
@@ -591,9 +591,21 @@
}, setFocusAfterButton: function(testPageDocument){
// sets focus on a link after the button
testPageDocument.querySelector('#afterlink').focus();
+}, setFocusAfterButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link after the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#afterlink').focus();
}, setFocusBeforeButton: function(testPageDocument){
// sets focus on a link before the button
testPageDocument.querySelector('#beforelink').focus();
+}, setFocusBeforeButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link before the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#beforelink').focus();
}, setFocusOnButton: function(testPageDocument){
// sets focus on the button
testPageDocument.querySelector('#toggle').focus();
@@ -643,7 +655,7 @@ Test 1: Trigger an alert in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -718,7 +730,7 @@ Test 2: Trigger an alert in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -793,7 +805,7 @@ Test 3: Trigger an alert
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/breadcrumb.html b/build/review/breadcrumb.html
index ce22bfa8f..4bd81a915 100644
--- a/build/review/breadcrumb.html
+++ b/build/review/breadcrumb.html
@@ -591,9 +591,21 @@
}, setFocusAfterButton: function(testPageDocument){
// sets focus on a link after the button
testPageDocument.querySelector('#afterlink').focus();
+}, setFocusAfterButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link after the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#afterlink').focus();
}, setFocusBeforeButton: function(testPageDocument){
// sets focus on a link before the button
testPageDocument.querySelector('#beforelink').focus();
+}, setFocusBeforeButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link before the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#beforelink').focus();
}, setFocusOnButton: function(testPageDocument){
// sets focus on the button
testPageDocument.querySelector('#toggle').focus();
@@ -643,7 +655,7 @@ Test 1: Navigate to the first breadcrumb link in reading m
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -729,7 +741,7 @@ Test 2: Navigate to the last breadcrumb link in reading mo
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -813,7 +825,7 @@ Test 3: Navigate to the first breadcrumb link in interacti
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -894,7 +906,7 @@ Test 4: Navigate to the last breadcrumb link in interactio
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -978,7 +990,7 @@ Test 5: Navigate to the first breadcrumb link
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1029,7 +1041,7 @@ Test 6: Navigate to the last breadcrumb link
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1082,7 +1094,7 @@ Test 7: Read information about a breadcrumb link in readin
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1160,7 +1172,7 @@ Test 8: Read information about a breadcrumb link in intera
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1238,7 +1250,7 @@ Test 9: Read information about a breadcrumb link
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/checkbox-tri-state.html b/build/review/checkbox-tri-state.html
index c0111b676..5c32d8793 100644
--- a/build/review/checkbox-tri-state.html
+++ b/build/review/checkbox-tri-state.html
@@ -591,9 +591,21 @@
}, setFocusAfterButton: function(testPageDocument){
// sets focus on a link after the button
testPageDocument.querySelector('#afterlink').focus();
+}, setFocusAfterButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link after the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#afterlink').focus();
}, setFocusBeforeButton: function(testPageDocument){
// sets focus on a link before the button
testPageDocument.querySelector('#beforelink').focus();
+}, setFocusBeforeButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link before the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#beforelink').focus();
}, setFocusOnButton: function(testPageDocument){
// sets focus on the button
testPageDocument.querySelector('#toggle').focus();
@@ -643,7 +655,7 @@ Test 1: Navigate forwards to a partially checked checkbox
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -725,7 +737,7 @@ Test 2: Navigate backwards to a partially checked checkbox
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -807,7 +819,7 @@ Test 3: Navigate forwards to a partially checked checkbox
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -883,7 +895,7 @@ Test 4: Navigate backwards to a partially checked checkbox
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -959,7 +971,7 @@ Test 5: Navigate forwards to a partially checked che
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1010,7 +1022,7 @@ Test 6: Navigate backwards to a partially checked ch
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1061,7 +1073,7 @@ Test 7: Operate a partially checked checkbox in reading mo
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1132,7 +1144,7 @@ Test 8: Operate a partially checked checkbox in interactio
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1203,7 +1215,7 @@ Test 9: Operate a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1250,7 +1262,7 @@ Test 10: Operate an unchecked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1322,7 +1334,7 @@ Test 11: Operate an unchecked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1394,7 +1406,7 @@ Test 12: Operate an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1442,7 +1454,7 @@ Test 13: Read a partially checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1520,7 +1532,7 @@ Test 14: Read a partially checked checkbox in interaction
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1598,7 +1610,7 @@ Test 15: Read a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1648,7 +1660,7 @@ Test 16: Read grouping information of a grouped, partially
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1720,7 +1732,7 @@ Test 17: Read grouping information of a grouped, partially
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1792,7 +1804,7 @@ Test 18: Read grouping information of a grouped, par
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1839,7 +1851,7 @@ Test 19: Navigate forwards into a checkbox group in readin
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1917,7 +1929,7 @@ Test 20: Navigate backwards out of a checkbox group in rea
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1991,7 +2003,7 @@ Test 21: Navigate forwards into a checkbox group in intera
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -2065,7 +2077,7 @@ Test 22: Navigate backwards out of a checkbox group in int
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -2139,7 +2151,7 @@ Test 23: Navigate forwards into a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -2186,7 +2198,7 @@ Test 24: Navigate backwards out of a checkbox group<
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/checkbox.html b/build/review/checkbox.html
index 725e0b273..48148111e 100644
--- a/build/review/checkbox.html
+++ b/build/review/checkbox.html
@@ -591,9 +591,21 @@
}, setFocusAfterButton: function(testPageDocument){
// sets focus on a link after the button
testPageDocument.querySelector('#afterlink').focus();
+}, setFocusAfterButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link after the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#afterlink').focus();
}, setFocusBeforeButton: function(testPageDocument){
// sets focus on a link before the button
testPageDocument.querySelector('#beforelink').focus();
+}, setFocusBeforeButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link before the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#beforelink').focus();
}, setFocusOnButton: function(testPageDocument){
// sets focus on the button
testPageDocument.querySelector('#toggle').focus();
@@ -643,7 +655,7 @@ Test 1: Navigate to an unchecked checkbox in reading mode<
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -716,7 +728,7 @@ Test 2: Navigate to an unchecked checkbox in interaction m
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -782,7 +794,7 @@ Test 3: Navigate to an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -828,7 +840,7 @@ Test 4: Navigate to a checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -911,7 +923,7 @@ Test 5: Navigate to a checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -987,7 +999,7 @@ Test 6: Navigate to a checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1038,7 +1050,7 @@ Test 7: Operate a checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1101,7 +1113,7 @@ Test 8: Operate a checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1162,7 +1174,7 @@ Test 9: Operate a checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1204,7 +1216,7 @@ Test 10: Read an unchecked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1282,7 +1294,7 @@ Test 11: Read an unchecked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1360,7 +1372,7 @@ Test 12: Read an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1410,7 +1422,7 @@ Test 13: Read a checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1488,7 +1500,7 @@ Test 14: Read a checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1566,7 +1578,7 @@ Test 15: Read a checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1616,7 +1628,7 @@ Test 16: Read grouping information of a grouped checkbox i
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1680,7 +1692,7 @@ Test 17: Read grouping information of a grouped checkbox i
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1744,7 +1756,7 @@ Test 18: Read grouping information of a grouped chec
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1788,7 +1800,7 @@ Test 19: Navigate sequentially through a checkbox group in
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1857,7 +1869,7 @@ Test 20: Navigate sequentially through a checkbox gr
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1903,7 +1915,7 @@ Test 21: Navigate into a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1980,7 +1992,7 @@ Test 22: Navigate into a checkbox group in interaction mod
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -2049,7 +2061,7 @@ Test 23: Navigate into a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -2099,7 +2111,7 @@ Test 24: Navigate out of a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -2168,7 +2180,7 @@ Test 25: Navigate out of a checkbox group in interaction m
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -2237,7 +2249,7 @@ Test 26: Navigate out of a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/combobox-autocomplete-both-updated.html b/build/review/combobox-autocomplete-both-updated.html
index d9de75891..c515684e7 100644
--- a/build/review/combobox-autocomplete-both-updated.html
+++ b/build/review/combobox-autocomplete-both-updated.html
@@ -591,9 +591,21 @@
}, setFocusAfterButton: function(testPageDocument){
// sets focus on a link after the button
testPageDocument.querySelector('#afterlink').focus();
+}, setFocusAfterButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link after the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#afterlink').focus();
}, setFocusBeforeButton: function(testPageDocument){
// sets focus on a link before the button
testPageDocument.querySelector('#beforelink').focus();
+}, setFocusBeforeButtonAndSetStateToPressed: function(testPageDocument){
+ // sets focus on a link before the button, and sets the state of the button to 'pressed'
+ let button = testPageDocument.querySelector('#toggle');
+ button.setAttribute('aria-pressed', 'true');
+ button.querySelector('use').setAttribute('xlink:href', '#icon-sound');
+ testPageDocument.querySelector('#beforelink').focus();
}, setFocusOnButton: function(testPageDocument){
// sets focus on the button
testPageDocument.querySelector('#toggle').focus();
@@ -643,7 +655,7 @@ Test 1: Navigate forwards to an empty, collapsed combobox
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -732,7 +744,7 @@ Test 2: Navigate backwards to an empty, collapsed combobox
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -821,7 +833,7 @@ Test 3: Navigate forwards to an empty, collapsed combobox
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -902,7 +914,7 @@ Test 4: Navigate backwards to an empty, collapsed combobox
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -983,7 +995,7 @@ Test 5: Navigate forwards to an empty, collapsed com
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1037,7 +1049,7 @@ Test 6: Navigate backwards to an empty, collapsed co
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- voiceover_macos
@@ -1091,7 +1103,7 @@ Test 7: Read information about an empty, collapsed combobo
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1174,7 +1186,7 @@ Test 8: Read information about an empty, collapsed combobo
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests:
- jaws
@@ -1255,7 +1267,7 @@ Test 9: Read information about an empty, collapsed c
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Tue Oct 19 14:34:03 2021 -0400
+ - Last edited: Wed Oct 20 13:28:00 2021 -0500
- Tests: