I want to create disabled select box for voice over users. I have this simple HTML. Select is disabled using disabled="disabled" and aria-disabled="true". But it is still accessible by Voice Over users.
Checked in MacOS (Chrome/Safari). VO reads Select as disabled. But I'm able to access it by clicking 'Ctrl+Option+Space'. Any idea? Thanks in advance.
<html>
<body>
<label>Select</label>
<select disabled="disabled" aria-disabled="true">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</body>
</html>
JS Fiddle: http://jsfiddle.net/acxksd1r/2/