Summary
Meta properties and directives that prevent zooming or initiate delayed page refreshes impede access for users with low vision and who need additional time to consume the content.
Techniques
-
Do not disable zooming with the
viewport/user-scalabe=no
property. -
Do not prevent zooming by setting the
viewport/maximum-scale
property to a value less than "2.0". -
Do not use the
meta-refresh
pragma directive with a value greater than "0". [[WCAG-3.2.5]]
Example
Explanation
Disabling the ability to zoom a page prevents users from being able to enlarge the content to a size that is more comfortable for them to read at. Similarly, setting a maximum scale less than double the initial size limits minimums for readability required by WCAG.
It is not normal for publications to make use of page redirects in packaged formats like EPUB. For web-hosted publications, consider using a HTTP redirect to send users to a replacement page.
If it is necessary to refresh the content of a page, provide the user the option to initiate the refresh.