- From: Jeanne Spellman <jeanne@w3.org>
- Date: Tue, 19 Aug 2014 16:07:39 -0400
- To: MATF <public-mobile-a11y-tf@w3.org>
G10
https://www.w3.org/WAI/GL/mobile-a11y-tf/wiki/G10
Suggested Changes
Insert as bullet #3 under Examples heading:
A mobile web page or app needs to detect the change in screen
orientation so that the view coordinate system can be recalculated and
passed to the speech synthesizer. In iOS, the control is written to
force recalculation of the accessibleElements array once the change to
didRotateFromInterfaceOrientation method is detected.
Code example
- (void)didRotateFromInterfaceOrientation:
(UIInterfaceOrientation)fromInterfaceOrientation
{
self.taskCounterView.accessibleElements = nil;
}
G88
Suggested Changes
Note: The Technique has already been modified with a bullet point that
it must be short.
Add Example 5 to the Examples heading
Example 5: A short title on a Mobile site
A Web site that is oriented toward mobile users uses a very short title
that can easily fit in a smaller screen size. The title for the Login
page for a blog has the title "Login: Blogname".
Received on Tuesday, 19 August 2014 20:07:42 UTC