Skip to content

Commit 272e600

Browse files
authored
fix(ui5-flexible-column-layout): speech output on layout arrows (#4034)
Fixes: #3699
1 parent 89d945a commit 272e600

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

packages/fiori/src/FlexibleColumnLayout.hbs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
design="Transparent"
4444
@click="{{startArrowClick}}"
4545
style="{{styles.arrows.start}}"
46-
aria-label="{{accStartArrowText}}"
4746
title="{{accStartArrowText}}"
4847
></ui5-button>
4948
{{/inline}}
@@ -56,7 +55,6 @@
5655
icon="slim-arrow-left"
5756
design="Transparent"
5857
@click="{{endArrowClick}}"
59-
aria-label="{{accEndArrowText}}"
6058
title="{{accEndArrowText}}"
6159
></ui5-button>
6260
{{/inline}}

packages/fiori/test/specs/FCL.spec.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,20 +97,14 @@ describe("FlexibleColumnLayout Behavior", () => {
9797
// assert
9898
assert.strictEqual(await startArrow.getAttribute("title"), startArrowText1,
9999
"Start arrow has the correct tooltip.");
100-
assert.strictEqual(await startArrow.getAttribute("aria-label"), startArrowText1,
101-
"Start arrow has the correct aria-label.");
102100
assert.strictEqual(await endArrow.getAttribute("title"), endArrowText,
103101
"End arrow has the correct tooltip.");
104-
assert.strictEqual(await endArrow.getAttribute("aria-label"), endArrowText,
105-
"End arrow has the correct aria-label.");
106102

107103
// act
108104
await startArrow.click();
109105

110106
// assert
111107
assert.strictEqual(await startArrow.getAttribute("title"), startArrowText2,
112108
"Start arrow has the correct tooltip.");
113-
assert.strictEqual(await startArrow.getAttribute("aria-label"), startArrowText2,
114-
"Start arrow has the correct aria-label.");
115109
});
116110
});

0 commit comments

Comments
 (0)