[Webkit-unassigned] [Bug 170179] VoiceOver does not announce a list for groups of links when list-style: none;
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Mar 5 00:11:10 PST 2019
https://bugs.webkit.org/show_bug.cgi?id=170179
monica <monicajesvina at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |monicajesvina at gmail.com
--- Comment #3 from monica <monicajesvina at gmail.com> ---
hey my <a href="https://www.6dollarsessay.com/">affordable paper writing service</a> in which i also face this issue
the solution is to use ARIA roles list and listitem to restore the semantics.
<ul role="list">
<li role="listitem">This is the first item</li>
<li role="listitem">This is the second item</li>
<li role="listitem">This is the third item</li>
<li role="listitem">This is the fourth item</li>
</ul>
also see the CSS:
<style>
.list li {
list-style-type: none; /* remove bullets */
}
.list li:before {
content: "\200B"; /* add zero-width space */
}
</style>
<ul class="list">
<li>This is the first item</li>
<li>This is the second item</li>
<li>This is the third item</li>
<li>This is the fourth item</li>
</ul>
even i suggest you testing for fix is that it does not impact JAWS or NVDA
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190305/be23cffd/attachment.html>
More information about the webkit-unassigned
mailing list