Skip to content

Commit

Permalink
Set the main ARIA 1.1 roles and properties for comboboxes (#5582)
Browse files Browse the repository at this point in the history
* Move search accessibility tests under selection tests

* Set aria-activedescendent and aria-owns on selection search

This is a reduced version of a5ab08b which is split out to only
set the `aria-activedescendent` and `aria-owns` attributes on the
search box located within the selection container. This is the search
box used within a multiple select, and previously it did not always
set these two attributes correctly.

One major change here is that we clear the `aria-activedescendent`
attribute if the result that is selected does not have an ID. This
was not being done previously, instead the attribute was still
containing the old value, and it meant that sometimes the wrong
result was being pointed to.

The test coverage for this was also expanded to ensure that these
attributes are properly being set.

* Set aria-activedescendent and aria-owns on dropdown search

This is a reduced version of a5ab08b which is split out to only
set the `aria-activedescendent` and `aria-owns` attributes on the
search box located within the dropdown. This is the search box used
within a single select, and previously it did not set these two
attributes at all. Additionally, it did not set the `aria-autocomplete`
attribute, which is also needed for screen readers to properly read
through the list of results.

There was previously no test coverage for this, so the tests were
largely copied from the tests for selection search.

* Set proper ARIA roles on result elements

When Select2 4.0.0 was originally written, accessibility was tested
using the Orca screen reader and Mozilla Firefox as the browser.
Because a `<select>` box could contain `<optgroup>` elements, which
can further contain additional `<option>` elements, Orca would read
out a `<select>` box as a tree view. Apparently Orca was the only
screen reader to do this, but Select2 maintained this behaviour
because the ARIA spec did not allow grouping elements for the right
roles.

In the ARIA 1.2 spec, an element with the role of `listbox` (which
is the proper one for representing a `<select>` element) can now
contain elements with the role of `group` that can be used for
grouping. This means that now Select2 can switch to use the proper
ARIA roles to better match how most browsers represent the `<select>`
element out of the box.

As a result, instead of the Select2 results list being represented
as a tree containing tree items, it is now represented as a listbox
containing options and groups. Notices will be represented as an
alert, which more closely represents what they were being used for.

This is a reduced version of a5ab08b which is split out to only
fix the `role` attributes on elements within the results list.

* Switch search boxes to have a role of searchbox

I'm pretty sure this is implicit now, but since we used to specify
that the search box had a role of `textbox`, we may as well migrate
that over to specify the role of `searchbox`. This is different
from the original pull request where this role was changes to
`combobox`, but that is because we are working against the ARIA 1.2
spec and the original pull request was working agianst the ARIA 1.0
spec, which required the search box to have that role.

* Set aria-controls instead of aria-owns on search boxes

In ARIA 1.1, there was a switch to use `aria-controls` on the search
box to point to the results list instead of using `aria-owns`. This
is required because the `combobox`, in our case the selection
container, should have the `aria-owns` attribute pointing to the
results list. And because only one elment can own another element,
we must fall back to `aria-controls` to represent that relationship.

The tests have also been adjusted to reflect this new discovery.
  • Loading branch information
kevin-brown committed Jul 30, 2019
1 parent f14bdf6 commit e5131d0
Show file tree
Hide file tree
Showing 12 changed files with 518 additions and 62 deletions.
2 changes: 1 addition & 1 deletion src/js/select2/dropdown/infiniteScroll.js
Expand Up @@ -78,7 +78,7 @@ define([
var $option = $(
'<li ' +
'class="select2-results__option select2-results__option--load-more"' +
'role="treeitem" aria-disabled="true"></li>'
'role="option" aria-disabled="true"></li>'
);

var message = this.options.get('translations').get('loadingMore');
Expand Down
15 changes: 14 additions & 1 deletion src/js/select2/dropdown/search.js
Expand Up @@ -11,7 +11,7 @@ define([
'<span class="select2-search select2-search--dropdown">' +
'<input class="select2-search__field" type="search" tabindex="-1"' +
' autocomplete="off" autocorrect="off" autocapitalize="none"' +
' spellcheck="false" role="textbox" />' +
' spellcheck="false" role="searchbox" aria-autocomplete="list" />' +
'</span>'
);

Expand All @@ -26,6 +26,8 @@ define([
Search.prototype.bind = function (decorated, container, $container) {
var self = this;

var resultsId = container.id + '-results';

decorated.call(this, container, $container);

this.$search.on('keydown', function (evt) {
Expand All @@ -48,6 +50,7 @@ define([

container.on('open', function () {
self.$search.attr('tabindex', 0);
self.$search.attr('aria-controls', resultsId);

self.$search.trigger('focus');

Expand All @@ -58,6 +61,8 @@ define([

container.on('close', function () {
self.$search.attr('tabindex', -1);
self.$search.removeAttr('aria-controls');
self.$search.removeAttr('aria-activedescendant');

self.$search.val('');
self.$search.trigger('blur');
Expand All @@ -80,6 +85,14 @@ define([
}
}
});

container.on('results:focus', function (params) {
if (params.data._resultId) {
self.$search.attr('aria-activedescendant', params.data._resultId);
} else {
self.$search.removeAttr('aria-activedescendant');
}
});
};

Search.prototype.handleSearch = function (evt) {
Expand Down
6 changes: 3 additions & 3 deletions src/js/select2/results.js
Expand Up @@ -14,7 +14,7 @@ define([

Results.prototype.render = function () {
var $results = $(
'<ul class="select2-results__options" role="tree"></ul>'
'<ul class="select2-results__options" role="listbox"></ul>'
);

if (this.options.get('multiple')) {
Expand All @@ -37,7 +37,7 @@ define([
this.hideLoading();

var $message = $(
'<li role="treeitem" aria-live="assertive"' +
'<li role="alert" aria-live="assertive"' +
' class="select2-results__option"></li>'
);

Expand Down Expand Up @@ -171,7 +171,7 @@ define([
option.className = 'select2-results__option';

var attrs = {
'role': 'treeitem',
'role': 'option',
'aria-selected': 'false'
};

Expand Down
12 changes: 10 additions & 2 deletions src/js/select2/selection/search.js
Expand Up @@ -12,7 +12,7 @@ define([
'<li class="select2-search select2-search--inline">' +
'<input class="select2-search__field" type="search" tabindex="-1"' +
' autocomplete="off" autocorrect="off" autocapitalize="none"' +
' spellcheck="false" role="textbox" aria-autocomplete="list" />' +
' spellcheck="false" role="searchbox" aria-autocomplete="list" />' +
'</li>'
);

Expand All @@ -29,14 +29,18 @@ define([
Search.prototype.bind = function (decorated, container, $container) {
var self = this;

var resultsId = container.id + '-results';

decorated.call(this, container, $container);

container.on('open', function () {
self.$search.attr('aria-controls', resultsId);
self.$search.trigger('focus');
});

container.on('close', function () {
self.$search.val('');
self.$search.removeAttr('aria-controls');
self.$search.removeAttr('aria-activedescendant');
self.$search.trigger('focus');
});
Expand All @@ -56,7 +60,11 @@ define([
});

container.on('results:focus', function (params) {
self.$search.attr('aria-activedescendant', params.id);
if (params.data._resultId) {
self.$search.attr('aria-activedescendant', params.data._resultId);
} else {
self.$search.removeAttr('aria-activedescendant');
}
});

this.$selection.on('focusin', '.select2-search--inline', function (evt) {
Expand Down
51 changes: 0 additions & 51 deletions tests/a11y/search-tests.js

This file was deleted.

185 changes: 185 additions & 0 deletions tests/dropdown/search-a11y-tests.js
@@ -0,0 +1,185 @@
module('Dropdown - Search - Accessibility');

var Utils = require('select2/utils');

var Dropdown = require('select2/dropdown');
var DropdownSearch = Utils.Decorate(
Dropdown,
require('select2/dropdown/search')
);

var $ = require('jquery');

var Options = require('select2/options');
var options = new Options({});

test('role attribute is set to searchbox', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

assert.equal(
$dropdown.find('input').attr('role'),
'searchbox',
'The search box is marked as a search box'
);
});

test('aria-autocomplete attribute is present', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

assert.equal(
$dropdown.find('input').attr('aria-autocomplete'),
'list',
'The search box is marked as autocomplete'
);
});

test('aria-activedescendant should not be set initiailly', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');

assert.ok(
!$search.attr('aria-activedescendant'),
'The search box should not point to anything when it is first rendered'
);
});

test('aria-activedescendant should be set after highlight', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

container.trigger('results:focus', {
data: {
_resultId: 'test'
}
});

var $search = $dropdown.find('input');

assert.equal(
$search.attr('aria-activedescendant'),
'test',
'The search is pointing to the focused result'
);
});

test('activedescendant should remove if there is no ID', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');
$search.attr('aria-activedescendant', 'test');

container.trigger('results:focus', {
data: {}
});

assert.ok(
!$search.attr('aria-activedescendant'),
'There is no result for the search to be pointing to'
);
});

test('aria-activedescendant should be removed when closed', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');
$search.attr('aria-activedescendant', 'something');

container.trigger('close');

assert.ok(
!$search.attr('aria-activedescendant'),
'There is no active descendant when the dropdown is closed'
);
});

test('aria-controls should not be set initiailly', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');

assert.ok(
!$search.attr('aria-controls'),
'The search box should not point to the results when it is first rendered'
);
});

test('aria-controls should be set when opened', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');

container.trigger('open');

assert.ok(
$search.attr('aria-controls'),
'The search should point to the results when it is opened'
);
});

test('aria-controls should be removed when closed', function (assert) {
var $select = $('#qunit-fixture .single');

var dropdown = new DropdownSearch($select, options);
var $dropdown = dropdown.render();

var container = new MockContainer();
dropdown.bind(container, $('<span></span>'));

var $search = $dropdown.find('input');
$search.attr('aria-controls', 'something');

container.trigger('close');

assert.ok(
!$search.attr('aria-controls'),
'There are no results for the search box to point to when it is closed'
);
});
25 changes: 25 additions & 0 deletions tests/results/a11y-tests.js
@@ -0,0 +1,25 @@
module('Results - Accessibility');

var $ = require('jquery');

var Options = require('select2/options');

var Results = require('select2/results');

test('role of results should be a listbox', function (assert) {
var results = new Results($('<select></select>'), new Options({}));

var $results = results.render();

assert.equal($results.attr('role'), 'listbox');
});

test('multiple select should have aria-multiselectable', function (assert) {
var results = new Results($('<select></select>'), new Options({
multiple: true
}));

var $results = results.render();

assert.equal($results.attr('aria-multiselectable'), 'true');
});

0 comments on commit e5131d0

Please sign in to comment.