Reading this with VoiceOver enabled only reads the initial list elements, and does not navigate to the the nested list elements (underneath the second nested ul
elements) when using the swipe left-to-right gesture.
ANy ideas as to why this happens?
<!DOCTYPE html>
<html>
<head
</head>
<div>
<ul role="menu">
<li role="menuitem">
<a href="#" aria-expanded="true">Expand</a>
<ul role="menu">
<li role="menuitem">
<a href="#" role="button">
Link One
</a>
</li>
<li role="menuitem">
<a href="#" role="button">
Link Two
</a>
</li>
</ul>
</li>
<li role="menuitem">
<a href="#"aria-expanded="true">Expand 2</a>
<ul role="menu">
<li role="menuitem">
<a href="#" role="button">
Link Three
</a>
</li>
<li role="menuitem">
<a href="#" role="button">
Link Four
</a>
</li>
</ul>
</li>
</ul>
</div>
</html>