input
elements, type
of "file", have a valid tab index.
input
element, type
of "file", missing a tab index.
input
element that contains a type
attribute value of "file" must have a tabindex
attribute.
tabindex
attribute to your input
element.
input
elements that have a type
attribute value of "file".input
element contains a tabindex
attribute.tabindex
attribute value contains one or more characters.input
elements, type
of "file", have a valid tab index.tabindex
attribute value to the input
element.input
element has valid tabindex
attribute.
<?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> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #142.2 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <label for="name">Name</label>: <input type="file" name="name" id="name" tabindex="" /> </p> </form> </body> </html>
input
element does not have tabindex
attribute.
<?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> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #142.1 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <label for="name">Name</label>: <input type="file" name="name" id="name" /> </p> </form> </body> </html>