List
An unordered list of things is represented by <ul>
[MDN].
An ordered list is represented by <ol>
[MDN].
And list items within a list are represented by <li>
[MDN].
VoiceOver and Safari (Webkit) (macOS and iOS) remove list element semantics when
.
A workaround is to apply an explicit list-style: none
is usedrole="list"
in the list elements <ul>
or <ol>
.
[scottohara.me, bugs.webkit.org].
Setting list-style-type: ""
apparently is an alternative
[matuzo.at].