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