Level 2
9.4 Create a logical tab order through links, form controls, and objects.
Priority 3
9.4 Create a logical tab order through links, form controls, and objects.
input elements, type of "checkbox", have a valid tab index.
input element, type of "checkbox", missing a tab index.
input element that contains a type attribute value of "checkbox" must have a tabindex attribute.
tabindex attribute to your input element.
input elements that have a type attribute value of "checkbox".input element contains a tabindex attribute.tabindex attribute value contains one or more characters.input elements, type of "checkbox", 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 #141.2 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <label for="name">Name</label>: <input type="checkbox" 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 #141.1 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <label for="name">Name</label>: <input type="checkbox" name="name" id="name" /> </p> </form> </body> </html>