textarea
elements have a label that is positioned close to control.
textarea
label is not positioned close to control.
textarea
element must have an associated label
element that is positioned close to it.
Question | Does textarea element have an associated label close to it? |
---|---|
PASS | Textarea element has a label close to it. |
FAIL | Textarea element does not have a label close to it. |
textarea
elements in the document.textarea
elements have a label that is positioned close to control.textarea
element.
<?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 #96.2 - Negative</title> </head> <body> <form action="http://www.example.com" method="post"> <table> <tr><td>first name:</td><td><input type="text" /></td></tr> <tr><td>last name:</td><td><input type="text" /></td></tr> <tr><td>comment:</td><td align="right"><textarea rows="3" cols="20" ></textarea></td></tr> <tr><td colspan="2"><input type="submit" value="submit" /></td></tr> </table> </form> </body> </html>
textarea
element.
<?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 #96.1 - Positive</title> </head> <body> <form action="http://www.example.com" method="post"> <table width="100%"> <tr><td>first name:</td><td align="right"><input type="text" /></td></tr> <tr><td>last name:</td><td align="right"><input type="text" /></td></tr> <tr><td>comment:</td><td align="right"><textarea rows="3" cols="20" ></textarea></td></tr> <tr><td colspan="2"><input type="submit" value="submit" ></td></tr> </table> </form> </body> </html>