textarea
elements have a label
containing text.
textarea
has no text in label
.
textarea
element must have text in its associated label.
textarea
element's associated label that describes the purpose or function of the control.
textarea
elements.textarea
element must have an explicitly associated label using one or more of the following methods.textarea
element has an id
attribute value that matches the for
attribute value of a label
element.textarea
element has a title
attribute.textarea
element is contained by a label
element.textarea
elements have a label
containing text.for
and id
contains text.
<?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 #212.2 - Negative</title> </head> <body> <form action="http://www.test.com/testing" method="post"> <label for="text1">comments:</label> <textarea name="nametext" id="text1" rows="5" cols="40"> </textarea> </form> </body> </html>
for
and id
does not contain text.
<?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 #212.1 - Positive</title> </head> <body> <form action="http://www.test.com/testing" method="post"> <label for="text1"></label> <textarea name="nametext" id="text1" rows="5" cols="40"> </textarea> </form> </body> </html>