This technique applies to touch and pointer operating modes.
The technique relates to:
ANY NOTES REGARDING KNOWN LACK OF SUPPORT FOR THIS TECHNIQUE WITH USER AGENTS OR ASSISTIVE TECHNOLOGY.
Custom controls in web interfaces may not be suitable for touch or pointer access when the built-in screen reader of mobile operating systems is enabled.
Where default touch or pointer gestures (such as dragging) do not work because of screen reader gestures that take precedence, ensure that there are equivalent alternative ways of activating or changing the state or value of the control.
Either:
A slider can be used to change a value (food quality) of a five point scale by dragging the thumb of the slider . When the system-internal screen reader is turned on, this direct manipulation does not work. Therefore, a different method is provided to set the value of the slider. Discrete marks along the slider representing the five posible values can be selected by first moving the focus to the appropriate mark and then selecting this mark by double-tapping.
Example 2 on: http://files.paciellogroup.com/blogmisc/samples/aria/slider/
A slider is used to set the numerical value of a donation. The value can be set by dragging the thumb of the slider. When the system-internal screen reader is turned on, this direct manipulation does not work. Therefore, an input field with type number is provided for users to specify the amount they want to donate. Note that the slider is not part of the focus order and hidden with aria-hidden because it is not intended to be used in keyboard and screen reader operation.
The example I remember has since been replaced by another mechanism btu it should be hard to construct an example based on something like http://files.paciellogroup.com/blogmisc/ARIA/slider/ when adding a text input.
For interactive elements (controls):
ANY TEST FILES GO HERE (NOTE WORKING EXAMPLES INCLUDING SOURCE CODE SHOULD BE REFERENCED IN THE EXAMPLES SECTION).