Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

remove Method Editor API, add correct reference for input types #37

Merged
merged 1 commit into from Jul 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -339,7 +339,7 @@ <h4 id="customTouchscreen">Provide instructions for custom touchscreen and devic
<h3>Mobile accessibility considerations related primarily to Principle 4: Robust</h3>
<section>
<h4>Set the virtual keyboard to the type of data entry required</h4>
<p>On some mobile devices, the standard keyboard can be customized in the device settings and additional custom keyboards can be installed. Some mobile devices also provide different virtual keyboards depending on the type of data entry. This can be set by the user or can be set to a specific keyboard. For example, using the different HTML5 form field controls (see <a href="http://www.w3.org/TR/ime-api/">Method Editor API</a>) on a website will show different keyboards automatically when users are entering in information into that field. Setting the type of keyboard helps prevent errors and ensures formats are correct but can be confusing for people who are using a screen reader when there are subtle changes in the keyboard. </p>
<p>On some mobile devices, the standard keyboard can be customized in the device settings and additional custom keyboards can be installed. Some mobile devices also provide different virtual keyboards depending on the type of data entry. This can be set by the user or can be set to a specific keyboard. For example, using the different HTML5 <code>input</code> types - such as <code>&lt;input type="tel"&gt;</code> (see <a href="https://www.w3.org/TR/html5/forms.html#states-of-the-type-attribute">HTML5: States of the <code>type</code> attribute</a>) - on a website will show different keyboards automatically when users are entering information into that field. Setting the type of keyboard helps prevent errors and ensures formats are correct but can be confusing for people who are using a screen reader when there are subtle changes in the keyboard. </p>
</section>
<section>
<h4>Provide easy methods for data entry</h4>
Expand Down