diff --git a/build/index.html b/build/index.html
index 801fd2975..007d11a04 100644
--- a/build/index.html
+++ b/build/index.html
@@ -40,7 +40,7 @@
Test Patterns for Review
Index |
Review |
26 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -48,15 +48,7 @@ Test Patterns for Review
Index |
Review |
24 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
- |
-
-
- combobox-autocomplete-both |
- Index |
- Review |
- 30 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -64,7 +56,7 @@ Test Patterns for Review
Index |
Review |
76 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -72,7 +64,7 @@ Test Patterns for Review
Index |
Review |
38 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -80,7 +72,7 @@ Test Patterns for Review
Index |
Review |
9 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -88,7 +80,7 @@ Test Patterns for Review
Index |
Review |
26 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -96,7 +88,7 @@ Test Patterns for Review
Index |
Review |
46 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -104,7 +96,7 @@ Test Patterns for Review
Index |
Review |
26 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -112,7 +104,7 @@ Test Patterns for Review
Index |
Review |
26 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -120,7 +112,7 @@ Test Patterns for Review
Index |
Review |
40 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -128,7 +120,7 @@ Test Patterns for Review
Index |
Review |
55 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -136,7 +128,7 @@ Test Patterns for Review
Index |
Review |
29 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -144,7 +136,7 @@ Test Patterns for Review
Index |
Review |
39 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -152,7 +144,7 @@ Test Patterns for Review
Index |
Review |
39 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -160,7 +152,7 @@ Test Patterns for Review
Index |
Review |
29 |
- 9e7ca59 Merge branch 'master' into tests/toggle-button
+ | 9dcb5bc Merge branch 'master' into remove-old-combobox
|
@@ -168,7 +160,8 @@ Test Patterns for Review
Index |
Review |
24 |
- |
+ 9dcb5bc Merge branch 'master' into remove-old-combobox
+ |
diff --git a/build/review/checkbox-tri-state.html b/build/review/checkbox-tri-state.html
index 355f80b97..70c122f14 100644
--- a/build/review/checkbox-tri-state.html
+++ b/build/review/checkbox-tri-state.html
@@ -93,55 +93,6 @@
}, moveFocusToFirstCheckbox: function(testPageDocument){
// sets focus on the first checkbox
testPageDocument.querySelector('[role="checkbox"]').focus();
-}, buttonFocusEmptyCollpased: function(testPageDocument){
- // Set focus on button
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
-}, buttonFocusEmptyExpanded: function(testPageDocument){
- // Set focus on button
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxFocusEmptyCollapsed: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' is empty
- // Ensure in collapsed state
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
-}, comboboxFocusEmptyExpanded: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxValueSetCollapsedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'Alabama';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
-}, comboboxValueSetExpandedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'a'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'a';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
}, moveFocusAfterCombobox: function(testPageDocument){
// sets focus on a link after the Combobox
testPageDocument.querySelector('#cb1-button').style.display = 'none';
@@ -689,7 +640,7 @@ Test 1: Navigate forwards to a partially checked checkbox in reading mode
Mode: reading
Applies to: jaws, nvda
- Last edited: Thu Jul 22 13:49:49 2021 -0500
+ Last edited: Thu Jul 22 13:56:35 2021 -0500
Tests:
- jaws
@@ -771,7 +722,7 @@ Test 2: Navigate backwards to a partially checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -853,7 +804,7 @@ Test 3: Navigate forwards to a partially checked checkbox in interaction mod
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -929,7 +880,7 @@ Test 4: Navigate backwards to a partially checked checkbox in interaction mo
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1005,7 +956,7 @@ Test 5: Navigate forwards to a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1056,7 +1007,7 @@ Test 6: Navigate backwards to a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1107,7 +1058,7 @@ Test 7: Operate a partially checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1178,7 +1129,7 @@ Test 8: Operate a partially checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1249,7 +1200,7 @@ Test 9: Operate a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1296,7 +1247,7 @@ Test 10: Operate an unchecked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1368,7 +1319,7 @@ Test 11: Operate an unchecked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1440,7 +1391,7 @@ Test 12: Operate an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1488,7 +1439,7 @@ Test 13: Read a partially checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1566,7 +1517,7 @@ Test 14: Read a partially checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1644,7 +1595,7 @@ Test 15: Read a partially checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1694,7 +1645,7 @@ Test 16: Read grouping information of a grouped, partially checked checkbox
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1766,7 +1717,7 @@ Test 17: Read grouping information of a grouped, partially checked checkbox
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1838,7 +1789,7 @@ Test 18: Read grouping information of a grouped, partially checked checkbox<
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1885,7 +1836,7 @@ Test 19: Navigate forwards into a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1963,7 +1914,7 @@ Test 20: Navigate backwards out of a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2037,7 +1988,7 @@ Test 21: Navigate forwards into a checkbox group in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2111,7 +2062,7 @@ Test 22: Navigate backwards out of a checkbox group in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2185,7 +2136,7 @@ Test 23: Navigate forwards into a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2232,7 +2183,7 @@ Test 24: Navigate backwards out of a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/checkbox.html b/build/review/checkbox.html
index 34fc96c67..b3b1c33db 100644
--- a/build/review/checkbox.html
+++ b/build/review/checkbox.html
@@ -93,55 +93,6 @@
}, moveFocusToFirstCheckbox: function(testPageDocument){
// sets focus on the first checkbox
testPageDocument.querySelector('[role="checkbox"]').focus();
-}, buttonFocusEmptyCollpased: function(testPageDocument){
- // Set focus on button
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
-}, buttonFocusEmptyExpanded: function(testPageDocument){
- // Set focus on button
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxFocusEmptyCollapsed: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' is empty
- // Ensure in collapsed state
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
-}, comboboxFocusEmptyExpanded: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxValueSetCollapsedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'Alabama';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
-}, comboboxValueSetExpandedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'a'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'a';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
}, moveFocusAfterCombobox: function(testPageDocument){
// sets focus on a link after the Combobox
testPageDocument.querySelector('#cb1-button').style.display = 'none';
@@ -689,7 +640,7 @@ Test 1: Navigate to an unchecked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -762,7 +713,7 @@ Test 2: Navigate to an unchecked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -828,7 +779,7 @@ Test 3: Navigate to an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -874,7 +825,7 @@ Test 4: Navigate to a checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -957,7 +908,7 @@ Test 5: Navigate to a checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1033,7 +984,7 @@ Test 6: Navigate to a checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1084,7 +1035,7 @@ Test 7: Operate a checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1147,7 +1098,7 @@ Test 8: Operate a checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1208,7 +1159,7 @@ Test 9: Operate a checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1250,7 +1201,7 @@ Test 10: Read an unchecked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1328,7 +1279,7 @@ Test 11: Read an unchecked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1406,7 +1357,7 @@ Test 12: Read an unchecked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1456,7 +1407,7 @@ Test 13: Read a checked checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1534,7 +1485,7 @@ Test 14: Read a checked checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1612,7 +1563,7 @@ Test 15: Read a checked checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1662,7 +1613,7 @@ Test 16: Read grouping information of a grouped checkbox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1726,7 +1677,7 @@ Test 17: Read grouping information of a grouped checkbox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1790,7 +1741,7 @@ Test 18: Read grouping information of a grouped checkbox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1834,7 +1785,7 @@ Test 19: Navigate sequentially through a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1903,7 +1854,7 @@ Test 20: Navigate sequentially through a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1949,7 +1900,7 @@ Test 21: Navigate into a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2026,7 +1977,7 @@ Test 22: Navigate into a checkbox group in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2095,7 +2046,7 @@ Test 23: Navigate into a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2145,7 +2096,7 @@ Test 24: Navigate out of a checkbox group in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2214,7 +2165,7 @@ Test 25: Navigate out of a checkbox group in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2283,7 +2234,7 @@ Test 26: Navigate out of a checkbox group
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
diff --git a/build/review/combobox-autocomplete-both-updated.html b/build/review/combobox-autocomplete-both-updated.html
index 45dd5385c..933c0fd18 100644
--- a/build/review/combobox-autocomplete-both-updated.html
+++ b/build/review/combobox-autocomplete-both-updated.html
@@ -93,55 +93,6 @@
}, moveFocusToFirstCheckbox: function(testPageDocument){
// sets focus on the first checkbox
testPageDocument.querySelector('[role="checkbox"]').focus();
-}, buttonFocusEmptyCollpased: function(testPageDocument){
- // Set focus on button
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
-}, buttonFocusEmptyExpanded: function(testPageDocument){
- // Set focus on button
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.buttonNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxFocusEmptyCollapsed: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' is empty
- // Ensure in collapsed state
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
-}, comboboxFocusEmptyExpanded: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = '';
- cb.combobox.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
-}, comboboxValueSetCollapsedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'Alabama'
- // Ensure in collapsed state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'Alabama';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
-}, comboboxValueSetExpandedState: function(testPageDocument){
- // Set focus on combobox
- // Set value of 'combobox' to 'a'
- // Ensure in expanded state.
- var cb = testPageDocument.comboboxAutocomplete;
- cb.comboboxNode.value = 'a';
- cb.comboboxNode.focus();
- cb.filter = cb.comboboxNode.value;
- cb.filterOptions();
- cb.open();
}, moveFocusAfterCombobox: function(testPageDocument){
// sets focus on a link after the Combobox
testPageDocument.querySelector('#cb1-button').style.display = 'none';
@@ -689,7 +640,7 @@ Test 1: Navigate forwards to an empty, collapsed combobox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -778,7 +729,7 @@ Test 2: Navigate backwards to an empty, collapsed combobox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -867,7 +818,7 @@ Test 3: Navigate forwards to an empty, collapsed combobox in interaction mod
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -948,7 +899,7 @@ Test 4: Navigate backwards to an empty, collapsed combobox in interaction mo
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1029,7 +980,7 @@ Test 5: Navigate forwards to an empty, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1083,7 +1034,7 @@ Test 6: Navigate backwards to an empty, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1137,7 +1088,7 @@ Test 7: Read information about an empty, collapsed combobox in reading mode<
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1220,7 +1171,7 @@ Test 8: Read information about an empty, collapsed combobox in interaction m
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1301,7 +1252,7 @@ Test 9: Read information about an empty, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1354,7 +1305,7 @@ Test 10: Navigate forwards to a filled in, collapsed combobox in reading mod
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1447,7 +1398,7 @@ Test 11: Navigate backwards to a filled in, collapsed combobox in reading mo
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1540,7 +1491,7 @@ Test 12: Navigate forwards to a filled in, collapsed combobox in interaction
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1625,7 +1576,7 @@ Test 13: Navigate backwards to a filled in, collapsed combobox in interactio
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1710,7 +1661,7 @@ Test 14: Navigate forwards to a filled in, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1766,7 +1717,7 @@ Test 15: Navigate backwards to a filled in, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -1822,7 +1773,7 @@ Test 16: Read information about a filled in, collapsed combobox in reading m
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1909,7 +1860,7 @@ Test 17: Read information about a filled in, collapsed combobox in interacti
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -1994,7 +1945,7 @@ Test 18: Read information about a filled in, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2049,7 +2000,7 @@ Test 19: Open an empty, collapsed combobox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2122,7 +2073,7 @@ Test 20: Open an empty, collapsed combobox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2195,7 +2146,7 @@ Test 21: Open an empty, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2242,7 +2193,7 @@ Test 22: Open a filled in, collapsed combobox in reading mode
- Mode: reading
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2315,7 +2266,7 @@ Test 23: Open a filled in, collapsed combobox in interaction mode
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2388,7 +2339,7 @@ Test 24: Open a filled in, collapsed combobox
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2435,7 +2386,7 @@ Test 25: Open an empty, collapsed combobox by typing a character in interact
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2510,7 +2461,7 @@ Test 26: Open an empty, collapsed combobox by typing a character
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2558,7 +2509,7 @@ Test 27: Open a filled in, collapsed combobox by typing a character in inter
- Mode: interaction
- Applies to: jaws, nvda
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- jaws
@@ -2633,7 +2584,7 @@ Test 28: Open a filled in, collapsed combobox by typing a character
- Mode: interaction
- Applies to: voiceover_macos
- - Last edited: Thu Jul 22 13:49:49 2021 -0500
+ - Last edited: Thu Jul 22 13:56:35 2021 -0500
- Tests:
- voiceover_macos
@@ -2681,7 +2632,7 @@ Test 29: Read information about an empty, expanded combobox in reading mode<