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>