DOM Object: HTMLTextAreaElement
| Property/Method | Functional Description | Data | Test Case |
| defaultValue | set the defaultValue in html, check to see it matches this in javascript. then change the value and reset the form. it should still be the same defaultValue. | htxa000.html | |
| form | test to see if this element has a parent form, and if it does, check to see that the correct one is returned. | htxa001.html | |
| accessKey | set to reasonable string values. | htxa002.html | |
| cols | set to numbers like 0,1,80,200 and include several lines of text in the textarea of length +/- 1 to each of the column widths | htxa003.html | |
| disabled | set, check to see if it is mutable. | htxa004.html | |
| name | Read name given to textarea | htxa005.html | |
| readOnly | might not be able to test. set this to true and try to change the value. it might be that the value is read only to the user, but is mutable by the script. | htxa006.html | |
| rows | set to numbers like 0,1,80,200 and include several lines of text in the textarea of length +/- 1 to each of the row widths | htxa007.html | |
| tabIndex | set/check against valid/invalid/duplicate numbers | htxa008.html | |
| type | not specified in spec. | htxa009.html | |
| value | set to reasonable strings. | htxa010.html | |
| blur() | set/check the focus() and blur() attributes | htxa011.html | |
| focus() | |||
| select() | htxa013.html |