Audio Guidance not work on input with type number

It’s an WebOS TV issue on Audio Guidance, could webOS TV Support Team help to resovle it?
It happens as below:
There’re 4 as shown in the picture, all the difference is the input type,
when focus on any of the inputs, Audio Guidance is supposed to read the “aria-label”,
It’s good with input type of text / email / url,
but Audio Guidance keeps silence on the number input.

You can replicate it easily with the demo code

add
“accessibility”: {
“supportsAudioGuidance”: true
}
into the appinfo.json and paste the code below to index.html inside the main_container div:

        <table>
          <tr>
            <th>INPUT TYPE</th>
            <th>INPUT FIELD</th>
          </tr>
          <tr>
            <td>Text Type</td>
            <td><input class="item" type="text" tabindex="0" aria-label="text type"/></td>
          </tr>
          <tr>
            <td>Number Type</td>
            <td><input class="item" type="number" tabindex="0" aria-label="number type"/></td>
          </tr>
          <tr>
            <td>Email Type</td>
            <td><input class="item" type="email" tabindex="0" aria-label="email type"/></td>
          </tr>
          <tr>
            <td>URL Type</td>
            <td><input class="item" type="url" tabindex="0" aria-label="url type"/></td>
          </tr>
        </table>

It is supposed to read only the value if the type of the input is number. To support it, please add role="textbox" to the input tag. Thank you.

1 Like

Thanks @narae0.kim, it now works with role="textbox"!