Merge pull request #3911 from matrix-org/t3chguy/a11y_tweak

Attempt to fix Safari + VoiceOver misunderstanding the timeline list
This commit is contained in:
Michael Telatynski 2020-01-23 16:27:58 +00:00 committed by GitHub
commit 661b2415d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -877,11 +877,14 @@ export default createReactClass({
// TODO: the classnames on the div and ol could do with being updated to
// reflect the fact that we don't necessarily contain a list of messages.
// it's not obvious why we have a separate div and ol anyway.
// give the <ol> an explicit role=list because Safari+VoiceOver seems to think an ordered-list with
// list-style-type: none; is no longer a list
return (<AutoHideScrollbar wrappedRef={this._collectScroll}
onScroll={this.onScroll}
className={`mx_ScrollPanel ${this.props.className}`} style={this.props.style}>
<div className="mx_RoomView_messageListWrapper">
<ol ref={this._itemlist} className="mx_RoomView_MessageList" aria-live="polite">
<ol ref={this._itemlist} className="mx_RoomView_MessageList" aria-live="polite" role="list">
{ this.props.children }
</ol>
</div>