I have a button who text should be visible in uppercase as "LOG OUT". But, when the button gets focused using TAB press, NVDA screen-reader reads it as character by character as "L", "O", "G", "O","U", "T" instead of two words "LOG" and "OUT".
HTML:
<div ng-controller="AppCtrl" ng-cloak="" ng-app="MyApp">
<md-button tab-index="0" role="button">Log out</md-button>
</div>
JS:
angular.module('MyApp', ['ngMaterial'])
.controller('AppCtrl', function($scope) {
});