Accessibility Checking for Large Sites
Rocket Validator integrates
axe-core version 4.4,
which currently checks 96
accessibility rules, into an automated web site scanner.
Zooming and scaling must not be disabled
The document must not use the
user-scalable="no"
parameter in the<meta name="viewport">
element because it disables text scaling and zooming which is essential to users with low vision.The
user-scalable="no"
parameter inside thecontent
attribute of<meta name="viewport">
element disables zooming on a page. Themaximum-scale
parameter limits the amount the user can zoom. This is problematic for people with low vision who rely on screen magnifiers to properly see the contents of a web page.Users with partial vision and low vision often choose to enlarge the fonts on their browser to make text on the web easier to read. The browser's viewport focus is everything visible in the browser window at a given moment. Maximizing the browser to full size on a high-resolution monitor creates a large the viewport focus area and may include the entire web page.
If the browser window is small, the viewport focus area only includes a small part of the web page. The browser's viewport focus does not affect the programmatic focus. Users can scroll up and down the web page, but the programmatic focus does not follow the viewport. The Web Content Accessibility Guidelines calls for developers to design pages so that they support resize up to 200%.
Ensures that the
user-scalable="no"
parameter is not present in the<meta name="viewport">
element and themaximum-scale
parameter is not less than 2.
Learn more about this accessibility rule at Deque University >>