You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expectation: <input type="text" autocomplete="one-time-code" /> should be allowed
Actual: It is flagged as invalid
Motivation: This autocomplete value can be used by some browsers to automatically fill in the value after receiving a one-time-code for 2-factor authentication. More info:
axe-core version: 3.5.5
axe-webdriver, extension or other integration version: eslint-plugin-jsx-a11y@6.3.0
Browser and Assistive Technology versions
For Tooling issues:
- Node version: 10.16.0
- Platform: Mac
The text was updated successfully, but these errors were encountered:
Verified with the changes, <input type="text" autocomplete="one-time-code" /> allowing me to enter the values in textbox, also its not failing with input type , but showing failure for there is no label defined for the input type
used test code is : <input type="text" autocomplete="one-time-code" />
Expectation:
<input type="text" autocomplete="one-time-code" />
should be allowedActual: It is flagged as invalid
Motivation: This autocomplete value can be used by some browsers to automatically fill in the value after receiving a one-time-code for 2-factor authentication. More info:
autocomplete=one-time-code
. Fixes whatwg/html#3745 whatwg/html#4573The text was updated successfully, but these errors were encountered: