Level 1
7.4 Until user agents provide the ability to stop the refresh, do not create periodically auto-refreshing pages.
P - timed response
Requirement 20: Time Limits
Priority 2
7.4 Until user agents provide the ability to stop the refresh, do not create periodically auto-refreshing pages.
Priority 2
7.4 Until user agents provide the ability to stop the refresh, do not create periodically auto-refreshing pages.
2.2 Enough Time: Provide users enough time to read and use content.
Success Criteria 2.2.1 Timing Adjustable (A)
2.2 Enough Time: Provide users enough time to read and use content.
Success Criteria 2.2.1 Timing Adjustable (A)
2.2 Enough Time: Provide users enough time to read and use content.
Success Criteria 2.2.1 Timing Adjustable (A)
meta elements that contain a http-equiv attribute with a value of "refresh" cannot contain a content attribute with a value of any number greater than zero.
meta element from the document or set the content attribute value to zero.
meta element (it occurs in the head section of the document).meta element contains a http-equiv attribute with a value of "refresh".meta element contains a content attribute with a value greater than zero.meta element does not have a http-equiv attribute value of "refresh" unless the content attribute value is zero.meta element.content attribute value to zero.<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ATRC Testfile - Check #72.2 - Negative</title> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <meta http-equiv="refresh" content="0; url=http://test.com" /> </head> <body> </body> </html>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ATRC Testfile - Check #72.1 - Positive</title> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <meta http-equiv="refresh" content="30; url=http://test.com" /> </head> <body> </body> </html>