Skip to content

Commit

Permalink
Verbage
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Jun 26, 2020
1 parent c7384e1 commit 9816c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ACCESSIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ Lastly, we style the "New messages" separator like a normal button, styled it to

Azure Bot Services is a distributed system and message order is not guaranteed. Web Chat use insertion sort based on the timestamp to order messages.

Messages with a latter timestamp may arrive sooner than messages with a former timestamp. Thus, messages with latter timestamp could appear on the screen first. Then, messages with a former timestamp will get inserted into place.
Messages with a latter timestamp may arrive sooner than messages with a former timestamp. Thus, messages with latter timestamp could appear on the screen first. Then, messages with a former timestamp will get inserted before it.

Because the time between the insertion is usually very short, users may not see the insertion visually. But screen reader read messages in the order they appear on the screen, regardless of their positions in the DOM tree. Thus, message order could be confusing to users who relies on screen reader.
Because the time between the insertion is usually very short (adjacent packet in a Web Socket connection), users may not see the insertion visually. But screen reader always read messages in the order they appear on the screen, regardless of their positions in the DOM tree. Thus, message order could be confusing to users who relies on screen reader.

### Implementations

Expand Down

0 comments on commit 9816c47

Please sign in to comment.