- Standard single line text editing keys |
+ Standard single line text editing keys |
- Keys used for cursor movement and text manipulation, such as Delete and Shift + Right Arrow.
@@ -243,7 +242,7 @@ Combobox Container
combobox
|
- div |
+ div |
- Identifies the element as a combobox.
@@ -346,7 +345,7 @@ Textbox
-
+
Role |
@@ -409,8 +408,8 @@
Javascript and CSS Source Code
diff --git a/examples/combobox/aria1.1pattern/js/grid-combobox.js b/examples/combobox/aria1.1pattern/js/grid-combobox.js
index b1e7e1d452..2a501fe13c 100644
--- a/examples/combobox/aria1.1pattern/js/grid-combobox.js
+++ b/examples/combobox/aria1.1pattern/js/grid-combobox.js
@@ -285,7 +285,7 @@ aria.GridCombobox.prototype.hideResults = function () {
this.shown = false;
this.activeRowIndex = -1;
this.activeColIndex = 0;
- this.grid.innerHTML = null;
+ this.grid.innerHTML = '';
aria.Utils.addClass(this.grid, 'hidden');
this.combobox.setAttribute('aria-expanded', 'false');
this.rowsCount = 0;
diff --git a/examples/combobox/aria1.1pattern/js/listbox-combobox.js b/examples/combobox/aria1.1pattern/js/listbox-combobox.js
index 58f827cb54..a263c9dcc7 100644
--- a/examples/combobox/aria1.1pattern/js/listbox-combobox.js
+++ b/examples/combobox/aria1.1pattern/js/listbox-combobox.js
@@ -224,7 +224,7 @@ aria.ListboxCombobox.prototype.checkHide = function (evt) {
aria.ListboxCombobox.prototype.hideListbox = function () {
this.shown = false;
this.activeIndex = -1;
- this.listbox.innerHTML = null;
+ this.listbox.innerHTML = '';
aria.Utils.addClass(this.listbox, 'hidden');
this.combobox.setAttribute('aria-expanded', 'false');
this.resultsCount = 0;
diff --git a/examples/combobox/aria1.1pattern/listbox-combo.html b/examples/combobox/aria1.1pattern/listbox-combo.html
index 6a64767f2f..2c11f39d83 100644
--- a/examples/combobox/aria1.1pattern/listbox-combo.html
+++ b/examples/combobox/aria1.1pattern/listbox-combo.html
@@ -10,12 +10,12 @@
-
+
-
-
+
+
- - Standard single line text editing keys
|
+ Standard single line text editing keys |
- Keys used for cursor movement and text manipulation, such as Delete and Shift + Right Arrow.
@@ -347,7 +347,7 @@ Combobox Container
combobox
|
- div |
+ div |
- Identifies the element as a combobox.
@@ -526,8 +526,8 @@ Listbox Popup
Javascript and CSS Source Code
| | | |