Skip to content

Commit

Permalink
fix(ui5-tabcontainer): Fix ARIA posinset and setsize values (#2046)
Browse files Browse the repository at this point in the history
The separator should be excluded, when calculating the aria-posinset and aria-setsize values.

FIXES: #2035
  • Loading branch information
ilhan007 committed Aug 3, 2020
1 parent 57be7c2 commit c6fcf69
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/src/TabContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@ class TabContainer extends UI5Element {

onBeforeRendering() {
// Set external properties to items
this.items.forEach((item, index) => {
this.items.filter(item => !item.isSeparator).forEach((item, index, arr) => {
item._isInline = this.tabLayout === TabLayout.Inline;
item._mixedMode = this.mixedMode;
item._posinset = index + 1;
item._setsize = this.items.length;
item._setsize = arr.length;
item._getTabContainerHeaderItemCallback = _ => {
return this.getDomRef().querySelector(`#${item._id}`);
};
Expand Down
11 changes: 11 additions & 0 deletions packages/main/test/specs/TabContainer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,15 @@ describe("TabContainer general interaction", () => {
assert.ok(tabHeight < tabScrollHeight, "Tab Content is scrollable");
assert.ok(tcHeight >= tcScrollHeight, "TabContainer is not scrollable scrollable");
});

it("tests aria attrs", () => {
const tabContainer = browser.$("#tabContainer1");
const tab4 = tabContainer.shadow$(".ui5-tab-strip-item:nth-child(4)");

// assert: The TabContainer has 8 children, 7 tabs and 1 separator (at position 2)
// and the separator should be skipped in terms of aria-posinset and aria-setsize,
// so for child number 4 ("Monitors") we expect the following attributes aria-posinset="3" and aria-setsize="7".
assert.strictEqual(tab4.getAttribute("aria-posinset"), "3", "The aria-posinset is correct.");
assert.strictEqual(tab4.getAttribute("aria-setsize"), "7", "The aria-setsize is correct.");
});
});

0 comments on commit c6fcf69

Please sign in to comment.