Skip to content

Commit 2065a59

Browse files
fix: set aria-selected on selected item, not the focused one (#5402) (#5408)
Co-authored-by: Serhii Kulykov <iamkulykov@gmail.com>
1 parent 855bd71 commit 2065a59

File tree

4 files changed

+18
-23
lines changed

4 files changed

+18
-23
lines changed

packages/combo-box/src/vaadin-combo-box-scroller.js

+5-9
Original file line numberDiff line numberDiff line change
@@ -216,18 +216,13 @@ export class ComboBoxScroller extends PolymerElement {
216216
return itemIndex !== undefined ? 'option' : false;
217217
}
218218

219-
/** @private */
220-
__getAriaSelected(focusedIndex, itemIndex) {
221-
return this.__isItemFocused(focusedIndex, itemIndex).toString();
222-
}
223-
224219
/** @private */
225220
__isItemFocused(focusedIndex, itemIndex) {
226221
return !this.loading && focusedIndex === itemIndex;
227222
}
228223

229-
/** @private */
230-
__isItemSelected(item, selectedItem, itemIdPath) {
224+
/** @protected */
225+
_isItemSelected(item, selectedItem, itemIdPath) {
231226
if (item instanceof ComboBoxPlaceholder) {
232227
return false;
233228
} else if (itemIdPath && item !== undefined && selectedItem !== undefined) {
@@ -291,19 +286,20 @@ export class ComboBoxScroller extends PolymerElement {
291286
__updateElement(el, index) {
292287
const item = this.items[index];
293288
const focusedIndex = this.focusedIndex;
289+
const selected = this._isItemSelected(item, this.selectedItem, this.itemIdPath);
294290

295291
el.setProperties({
296292
item,
297293
index,
298294
label: this.getItemLabel(item),
299-
selected: this.__isItemSelected(item, this.selectedItem, this.itemIdPath),
295+
selected,
300296
renderer: this.renderer,
301297
focused: this.__isItemFocused(focusedIndex, index),
302298
});
303299

304300
el.id = `${this.__hostTagName}-item-${index}`;
305301
el.setAttribute('role', this.__getAriaRole(index));
306-
el.setAttribute('aria-selected', this.__getAriaSelected(focusedIndex, index));
302+
el.setAttribute('aria-selected', selected.toString());
307303
el.setAttribute('aria-posinset', index + 1);
308304
el.setAttribute('aria-setsize', this.items.length);
309305

packages/combo-box/test/aria.test.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ describe('ARIA', () => {
4343
expect(input.getAttribute('aria-activedescendant')).to.equal(items[1].id);
4444
});
4545

46-
it('should set aria-selected on item elements depending on the focused item', () => {
47-
arrowDownKeyDown(input); // Move focus to the 1st item.
46+
it('should set aria-selected on item elements depending on the selected item', () => {
47+
comboBox.value = 'foo';
4848
expect(items[0].getAttribute('aria-selected')).to.equal('true');
4949
expect(items[1].getAttribute('aria-selected')).to.equal('false');
50-
arrowDownKeyDown(input); // Move focus to the 2nd item.
50+
51+
comboBox.value = 'bar';
5152
expect(items[0].getAttribute('aria-selected')).to.equal('false');
5253
expect(items[1].getAttribute('aria-selected')).to.equal('true');
5354
});

packages/multi-select-combo-box/src/vaadin-multi-select-combo-box-scroller.js

+5-8
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,11 @@ class MultiSelectComboBoxScroller extends ComboBoxScroller {
2424
this.setAttribute('aria-multiselectable', 'true');
2525
}
2626

27-
/** @private */
28-
__getAriaSelected(_focusedIndex, itemIndex) {
29-
const item = this.items[itemIndex];
30-
return this.__isItemSelected(item, null, this.itemIdPath).toString();
31-
}
32-
33-
/** @private */
34-
__isItemSelected(item, _selectedItem, itemIdPath) {
27+
/**
28+
* @protected
29+
* @override
30+
*/
31+
_isItemSelected(item, _selectedItem, itemIdPath) {
3532
if (item instanceof ComboBoxPlaceholder) {
3633
return false;
3734
}

packages/time-picker/test/aria.test.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ describe('ARIA', () => {
4141
expect(input.getAttribute('aria-activedescendant')).to.equal(items[1].id);
4242
});
4343

44-
it('should set aria-selected on item elements depending on the focused item', () => {
45-
arrowDownKeyDown(input); // Move focus to the 1st item.
44+
it('should set aria-selected on item elements depending on the selected item', () => {
45+
timePicker.value = '00:00';
4646
expect(items[0].getAttribute('aria-selected')).to.equal('true');
4747
expect(items[1].getAttribute('aria-selected')).to.equal('false');
48-
arrowDownKeyDown(input); // Move focus to the 2nd item.
48+
49+
timePicker.value = '01:00';
4950
expect(items[0].getAttribute('aria-selected')).to.equal('false');
5051
expect(items[1].getAttribute('aria-selected')).to.equal('true');
5152
});

0 commit comments

Comments
 (0)