Page refreshing
(Referring UWEM Test: 7.4_HTML_01)Test info
Failure cause
The inspected page is periodically auto-refreshing itself
The inspected (X)HTML resource uses
<meta httpequiv="refresh">to create periodical auto-refreshing.
Why this may be a barrier
Automatic refreshing disorients users, and can disrupt a browser's history of visited pages.
It makes the content unusable for people who have limited reading ability or difficulty concentrating. Automatic refreshing also causes problems for user-agents that cannot cope with automatic re-directs and may fail to show any content at all.
Good Example
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 //EN">
<html>
<head><title>Sample: Page WITHOUT META REFRESH</title></head>
<body>Some content</body>
</html>
Solution
Do not auto-refresh the whole page. Delete the meta element and use alternative possibilities for users to receive new content.
References
Related WCAG 1.0 Checkpoint
7.4"Until user agents provide the ability to stop the refresh, do not create periodically auto-refreshing pages." [Priority 2]
WCAG 1.0 Checkpoint 7.4Referring UWEM Test
7.4_HTML_01This test is targeted to find elements that can cause page refreshing.