Accessibilty: jaws18 - каждая буква, введенная в поле ввода имени пользователя, читается дважды в chrome - PullRequest
0 голосов
/ 03 декабря 2018

Каждая буква, введенная в текстовое поле имени пользователя, дважды читается JAWS.
Версия JAWS - 18
Браузер - Chrome

Код:

<!-- Text input-->
    <div class="form-group">
      <label class="smalltext" for="email">{{ 'sign.email' | translate }}</label>  
      <input id="email" name="emailaddress" ng-model="login.user.username" type="email" placeholder="Email" class="form-control input-md smalltext" required autocomplete="new-username">
       <!-- ff solution not to remeber credentials -->
      <input type="text" class="hidden">
      <p class="danger" ng-show="(loginform.$submitted) && loginform.emailaddress.$error.required" class="help-block" aria-live="polite">{{ 'el_txt_validateUsername' | translate }}.</p>
      <p class="danger" ng-show="(loginform.$submitted) && loginform.emailaddress.$error.email" class="help-block" aria-live="polite">Please enter the email address in a valid format.</p>
    </div>
...