tabindex
attributes follows a logical order.
Question | Does the tab order follow a logical order? |
---|---|
PASS | Tab order follows a logical order. |
FAIL | Tab order does not follow a logical order. |
tabindex
attribute is used.tabindex
attributes follows a logical order.<?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 #264.3 - Negative</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <input type="submit" value="submit" tabindex="1" /> </p> </form> </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> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #264.1 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <p> <input type="submit" value="submit" /> </p> </form> </body> </html>