input
elements, type
of "radio", have a label that is positioned close to the control.
input
element label
, type
of "radio", is not positioned close to control.
input
element with a type
attribute value of "radio" must have an associated label
element positioned close to it.
Question | Does input field with type "radio" have a label positioned close to it? |
---|---|
PASS | Label is close to input field with type "radio." |
FAIL | Label is not close to input field with type "radio." |
input
elements that have a type
attribute value of "radio".input
element within the document and check the positioning of its label.input
elements, type
of "radio", have a label that is positioned close to the control.<?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>Testfile - Check #125.2 - Negative</title> </head> <body> <p>Select your favourite animal using the form below:</p> <form action="http://www.example.com" method="post"> <table> <tr><td><input type="radio" /></td><td>dog</td></tr> <tr><td><input type="radio" /></td><td>cat</td></tr> <tr><td><input type="radio" /></td><td>polar bear</td></tr> <tr><td colspan="2"><input type="submit" value="submit" /></td></tr> </table> </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>Testfile - Check #125.1 - Positive</title> </head> <body> <p>Select your favourite animal using the form below:</p> <form action="http://www.example.com" method="post"> <table width="100%"> <tr><td><input type="radio" /></td><td align="right">dog</td></tr> <tr><td><input type="radio" /></td><td align="right">cat</td></tr> <tr><td><input type="radio" /></td><td align="right">polar bear</td></tr> <tr><td colspan="2"><input type="submit" value="submit" /></td></tr> </table> </form> </body> </html>