Annotation of html5/spec/the-textarea-element.html, revision 1.196

1.88      mike        1: <!DOCTYPE html>
1.159     sruby       2: <html lang="en-US-x-Hixie"><head><title>4.10.13 The textarea element &#8212; HTML5</title><style type="text/css">
1.1       mike        3:    pre { margin-left: 2em; white-space: pre-wrap; }
                      4:    h2 { margin: 3em 0 1em 0; }
                      5:    h3 { margin: 2.5em 0 1em 0; }
                      6:    h4 { margin: 2.5em 0 0.75em 0; }
                      7:    h5, h6 { margin: 2.5em 0 1em; }
                      8:    h1 + h2, h1 + h2 + h2 { margin: 0.75em 0 0.75em; }
                      9:    h2 + h3, h3 + h4, h4 + h5, h5 + h6 { margin-top: 0.5em; }
                     10:    p { margin: 1em 0; }
                     11:    hr:not(.top) { display: block; background: none; border: none; padding: 0; margin: 2em 0; height: auto; }
                     12:    dl, dd { margin-top: 0; margin-bottom: 0; }
                     13:    dt { margin-top: 0.75em; margin-bottom: 0.25em; clear: left; }
                     14:    dt + dt { margin-top: 0; }
                     15:    dd dt { margin-top: 0.25em; margin-bottom: 0; }
                     16:    dd p { margin-top: 0; }
                     17:    dd dl + p { margin-top: 1em; }
                     18:    dd table + p { margin-top: 1em; }
                     19:    p + * > li, dd li { margin: 1em 0; }
                     20:    dt, dfn { font-weight: bold; font-style: normal; }
                     21:    i, em { font-style: italic; }
                     22:    dt dfn { font-style: italic; }
                     23:    pre, code { font-size: inherit; font-family: monospace; font-variant: normal; }
                     24:    pre strong { color: black; font: inherit; font-weight: bold; background: yellow; }
                     25:    pre em { font-weight: bolder; font-style: normal; }
                     26:    @media screen { code { color: orangered; } code :link, code :visited { color: inherit; } }
                     27:    var sub { vertical-align: bottom; font-size: smaller; position: relative; top: 0.1em; }
                     28:    table { border-collapse: collapse; border-style: hidden hidden none hidden; }
                     29:    table thead, table tbody { border-bottom: solid; }
                     30:    table tbody th:first-child { border-left: solid; }
                     31:    table tbody th { text-align: left; }
                     32:    table td, table th { border-left: solid; border-right: solid; border-bottom: solid thin; vertical-align: top; padding: 0.2em; }
                     33:    blockquote { margin: 0 0 0 2em; border: 0; padding: 0; font-style: italic; }
                     34: 
                     35:    .bad, .bad *:not(.XXX) { color: gray; border-color: gray; background: transparent; }
                     36:    .matrix, .matrix td { border: none; text-align: right; }
                     37:    .matrix { margin-left: 2em; }
                     38:    .dice-example { border-collapse: collapse; border-style: hidden solid solid hidden; border-width: thin; margin-left: 3em; }
                     39:    .dice-example caption { width: 30em; font-size: smaller; font-style: italic; padding: 0.75em 0; text-align: left; }
                     40:    .dice-example td, .dice-example th { border: solid thin; width: 1.35em; height: 1.05em; text-align: center; padding: 0; }
                     41: 
                     42:    .toc dfn, h1 dfn, h2 dfn, h3 dfn, h4 dfn, h5 dfn, h6 dfn { font: inherit; }
                     43:    img.extra, p.overview { float: right; }
                     44:    pre.idl { border: solid thin; background: #EEEEEE; color: black; padding: 0.5em 1em; position: relative; }
                     45:    pre.idl :link, pre.idl :visited { color: inherit; background: transparent; }
                     46:    pre.idl::before { content: "IDL"; font: bold small sans-serif; padding: 0.5em; background: white; position: absolute; top: 0; margin: -1px 0 0 -4em; width: 1.5em; border: thin solid; border-radius: 0 0 0 0.5em }
                     47:    pre.css { border: solid thin; background: #FFFFEE; color: black; padding: 0.5em 1em; }
                     48:    pre.css:first-line { color: #AAAA50; }
                     49:    dl.domintro { color: green; margin: 2em 0 2em 2em; padding: 0.5em 1em; border: none; background: #DDFFDD; }
                     50:    hr + dl.domintro, div.impl + dl.domintro { margin-top: 2.5em; margin-bottom: 1.5em; }
                     51:    dl.domintro dt, dl.domintro dt * { color: black; text-decoration: none; }
                     52:    dl.domintro dd { margin: 0.5em 0 1em 2em; padding: 0; }
                     53:    dl.domintro dd p { margin: 0.5em 0; }
                     54:    dl.domintro:before { display: table; margin: -1em -0.5em -0.5em auto; width: auto; content: 'This box is non-normative. Implementation requirements are given below this box.'; color: black; font-style: italic; border: solid 2px; background: white; padding: 0 0.25em; }
                     55:    dl.switch { padding-left: 2em; }
                     56:    dl.switch > dt { text-indent: -1.5em; }
                     57:    dl.switch > dt:before { content: '\21AA'; padding: 0 0.5em 0 0; display: inline-block; width: 1em; text-align: right; line-height: 0.5em; }
                     58:    dl.triple { padding: 0 0 0 1em; }
                     59:    dl.triple dt, dl.triple dd { margin: 0; display: inline }
                     60:    dl.triple dt:after { content: ':'; }
                     61:    dl.triple dd:after { content: '\A'; white-space: pre; }
                     62:    .diff-old { text-decoration: line-through; color: silver; background: transparent; }
                     63:    .diff-chg, .diff-new { text-decoration: underline; color: green; background: transparent; }
                     64:    a .diff-new { border-bottom: 1px blue solid; }
                     65: 
1.180     sruby      66:    figure.diagrams { border: double black; background: white; padding: 1em; }
                     67:    figure.diagrams img { display: block; margin: 1em auto; } 
                     68: 
1.1       mike       69:    h2 { page-break-before: always; }
                     70:    h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
                     71:    h1 + h2, hr + h2.no-toc { page-break-before: auto; }
                     72: 
                     73:    p  > span:not([title=""]):not([class="XXX"]):not([class="impl"]):not([class="note"]),
                     74:    li > span:not([title=""]):not([class="XXX"]):not([class="impl"]):not([class="note"]), { border-bottom: solid #9999CC; }
                     75: 
                     76:    div.head { margin: 0 0 1em; padding: 1em 0 0 0; }
                     77:    div.head p { margin: 0; }
                     78:    div.head h1 { margin: 0; }
                     79:    div.head .logo { float: right; margin: 0 1em; }
                     80:    div.head .logo img { border: none } /* remove border from top image */
                     81:    div.head dl { margin: 1em 0; }
                     82:    div.head p.copyright, div.head p.alt { font-size: x-small; font-style: oblique; margin: 0; }
                     83: 
                     84:    body > .toc > li { margin-top: 1em; margin-bottom: 1em; }
                     85:    body > .toc.brief > li { margin-top: 0.35em; margin-bottom: 0.35em; }
                     86:    body > .toc > li > * { margin-bottom: 0.5em; }
                     87:    body > .toc > li > * > li > * { margin-bottom: 0.25em; }
                     88:    .toc, .toc li { list-style: none; }
                     89: 
                     90:    .brief { margin-top: 1em; margin-bottom: 1em; line-height: 1.1; }
                     91:    .brief li { margin: 0; padding: 0; }
                     92:    .brief li p { margin: 0; padding: 0; }
                     93: 
                     94:    .category-list { margin-top: -0.75em; margin-bottom: 1em; line-height: 1.5; }
                     95:    .category-list::before { content: '\21D2\A0'; font-size: 1.2em; font-weight: 900; }
                     96:    .category-list li { display: inline; }
                     97:    .category-list li:not(:last-child)::after { content: ', '; }
                     98:    .category-list li > span, .category-list li > a { text-transform: lowercase; }
                     99:    .category-list li * { text-transform: none; } /* don't affect <code> nested in <a> */
                    100: 
                    101:    .XXX { color: #E50000; background: white; border: solid red; padding: 0.5em; margin: 1em 0; }
                    102:    .XXX > :first-child { margin-top: 0; }
                    103:    p .XXX { line-height: 3em; }
                    104:    .annotation { border: solid thin black; background: #0C479D; color: white; position: relative; margin: 8px 0 20px 0; }
                    105:    .annotation:before { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 6px -6px -6px 6px; background: #333333; z-index: -1; content: ''; }
                    106:    .annotation :link, .annotation :visited { color: inherit; }
                    107:    .annotation :link:hover, .annotation :visited:hover { background: transparent; }
                    108:    .annotation span { border: none ! important; }
                    109:    .note { color: green; background: transparent; font-family: sans-serif; }
                    110:    .warning { color: red; background: transparent; }
                    111:    .note, .warning { font-weight: bolder; font-style: italic; }
                    112:    .note em, .warning em, .note i, .warning i { font-style: normal; }
                    113:    p.note, div.note { padding: 0.5em 2em; }
                    114:    span.note { padding: 0 2em; }
                    115:    .note p:first-child, .warning p:first-child { margin-top: 0; }
                    116:    .note p:last-child, .warning p:last-child { margin-bottom: 0; }
                    117:    .warning:before { font-style: normal; }
                    118:    p.note:before { content: 'Note: '; }
                    119:    p.warning:before { content: '\26A0 Warning! '; }
                    120: 
                    121:    .bookkeeping:before { display: block; content: 'Bookkeeping details'; font-weight: bolder; font-style: italic; }
                    122:    .bookkeeping { font-size: 0.8em; margin: 2em 0; }
                    123:    .bookkeeping p { margin: 0.5em 2em; display: list-item; list-style: square; }
                    124:    .bookkeeping dt { margin: 0.5em 2em 0; }
                    125:    .bookkeeping dd { margin: 0 3em 0.5em; }
                    126: 
                    127:    h4 { position: relative; z-index: 3; }
                    128:    h4 + .element, h4 + div + .element { margin-top: -2.5em; padding-top: 2em; }
                    129:    .element {
                    130:      background: #EEEEFF;
                    131:      color: black;
                    132:      margin: 0 0 1em 0.15em;
                    133:      padding: 0 1em 0.25em 0.75em;
                    134:      border-left: solid #9999FF 0.25em;
                    135:      position: relative;
                    136:      z-index: 1;
                    137:    }
                    138:    .element:before {
                    139:      position: absolute;
                    140:      z-index: 2;
                    141:      top: 0;
                    142:      left: -1.15em;
                    143:      height: 2em;
                    144:      width: 0.9em;
                    145:      background: #EEEEFF;
                    146:      content: ' ';
                    147:      border-style: none none solid solid;
                    148:      border-color: #9999FF;
                    149:      border-width: 0.25em;
                    150:    }
                    151: 
                    152:    .example { display: block; color: #222222; background: #FCFCFC; border-left: double; margin-left: 2em; padding-left: 1em; }
                    153:    td > .example:only-child { margin: 0 0 0 0.1em; }
                    154: 
                    155:    ul.domTree, ul.domTree ul { padding: 0 0 0 1em; margin: 0; }
                    156:    ul.domTree li { padding: 0; margin: 0; list-style: none; position: relative; }
                    157:    ul.domTree li li { list-style: none; }
                    158:    ul.domTree li:first-child::before { position: absolute; top: 0; height: 0.6em; left: -0.75em; width: 0.5em; border-style: none none solid solid; content: ''; border-width: 0.1em; }
                    159:    ul.domTree li:not(:last-child)::after { position: absolute; top: 0; bottom: -0.6em; left: -0.75em; width: 0.5em; border-style: none none solid solid; content: ''; border-width: 0.1em; }
                    160:    ul.domTree span { font-style: italic; font-family: serif; }
                    161:    ul.domTree .t1 code { color: purple; font-weight: bold; }
                    162:    ul.domTree .t2 { font-style: normal; font-family: monospace; }
                    163:    ul.domTree .t2 .name { color: black; font-weight: bold; }
                    164:    ul.domTree .t2 .value { color: blue; font-weight: normal; }
                    165:    ul.domTree .t3 code, .domTree .t4 code, .domTree .t5 code { color: gray; }
                    166:    ul.domTree .t7 code, .domTree .t8 code { color: green; }
                    167:    ul.domTree .t10 code { color: teal; }
                    168: 
                    169:    body.dfnEnabled dfn { cursor: pointer; }
                    170:    .dfnPanel {
                    171:      display: inline;
                    172:      position: absolute;
                    173:      z-index: 10;
                    174:      height: auto;
                    175:      width: auto;
                    176:      padding: 0.5em 0.75em;
                    177:      font: small sans-serif, Droid Sans Fallback;
                    178:      background: #DDDDDD;
                    179:      color: black;
                    180:      border: outset 0.2em;
                    181:    }
                    182:    .dfnPanel * { margin: 0; padding: 0; font: inherit; text-indent: 0; }
                    183:    .dfnPanel :link, .dfnPanel :visited { color: black; }
                    184:    .dfnPanel p { font-weight: bolder; }
                    185:    .dfnPanel * + p { margin-top: 0.25em; }
                    186:    .dfnPanel li { list-style-position: inside; }
                    187: 
                    188:    #configUI { position: absolute; z-index: 20; top: 10em; right: 1em; width: 11em; font-size: small; }
                    189:    #configUI p { margin: 0.5em 0; padding: 0.3em; background: #EEEEEE; color: black; border: inset thin; }
                    190:    #configUI p label { display: block; }
                    191:    #configUI #updateUI, #configUI .loginUI { text-align: center; }
                    192:    #configUI input[type=button] { display: block; margin: auto; }
                    193: 
                    194:    fieldset { margin: 1em; padding: 0.5em 1em; }
                    195:    fieldset > legend + * { margin-top: 0; }
                    196:    fieldset > :last-child { margin-bottom: 0; }
                    197:    fieldset p { margin: 0.5em 0; }
                    198: 
1.159     sruby     199:   </style><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><style type="text/css">
1.1       mike      200: 
                    201:    .applies thead th > * { display: block; }
                    202:    .applies thead code { display: block; }
                    203:    .applies tbody th { whitespace: nowrap; }
                    204:    .applies td { text-align: center; }
                    205:    .applies .yes { background: yellow; }
                    206: 
                    207:    .matrix, .matrix td { border: hidden; text-align: right; }
                    208:    .matrix { margin-left: 2em; }
                    209: 
                    210:    .dice-example { border-collapse: collapse; border-style: hidden solid solid hidden; border-width: thin; margin-left: 3em; }
                    211:    .dice-example caption { width: 30em; font-size: smaller; font-style: italic; padding: 0.75em 0; text-align: left; }
                    212:    .dice-example td, .dice-example th { border: solid thin; width: 1.35em; height: 1.05em; text-align: center; padding: 0; }
                    213: 
                    214:    td.eg { border-width: thin; text-align: center; }
                    215: 
                    216:    #table-example-1 { border: solid thin; border-collapse: collapse; margin-left: 3em; }
                    217:    #table-example-1 * { font-family: "Essays1743", serif; line-height: 1.01em; }
                    218:    #table-example-1 caption { padding-bottom: 0.5em; }
                    219:    #table-example-1 thead, #table-example-1 tbody { border: none; }
                    220:    #table-example-1 th, #table-example-1 td { border: solid thin; }
                    221:    #table-example-1 th { font-weight: normal; }
                    222:    #table-example-1 td { border-style: none solid; vertical-align: top; }
                    223:    #table-example-1 th { padding: 0.5em; vertical-align: middle; text-align: center; }
                    224:    #table-example-1 tbody tr:first-child td { padding-top: 0.5em; }
                    225:    #table-example-1 tbody tr:last-child td { padding-bottom: 1.5em; }
                    226:    #table-example-1 tbody td:first-child { padding-left: 2.5em; padding-right: 0; width: 9em; }
                    227:    #table-example-1 tbody td:first-child::after { content: leader(". "); }
                    228:    #table-example-1 tbody td { padding-left: 2em; padding-right: 2em; }
                    229:    #table-example-1 tbody td:first-child + td { width: 10em; }
                    230:    #table-example-1 tbody td:first-child + td ~ td { width: 2.5em; }
                    231:    #table-example-1 tbody td:first-child + td + td + td ~ td { width: 1.25em; }
                    232: 
                    233:    .apple-table-examples { border: none; border-collapse: separate; border-spacing: 1.5em 0em; width: 40em; margin-left: 3em; }
                    234:    .apple-table-examples * { font-family: "Times", serif; }
                    235:    .apple-table-examples td, .apple-table-examples th { border: none; white-space: nowrap; padding-top: 0; padding-bottom: 0; }
                    236:    .apple-table-examples tbody th:first-child { border-left: none; width: 100%; }
                    237:    .apple-table-examples thead th:first-child ~ th { font-size: smaller; font-weight: bolder; border-bottom: solid 2px; text-align: center; }
                    238:    .apple-table-examples tbody th::after, .apple-table-examples tfoot th::after { content: leader(". ") }
                    239:    .apple-table-examples tbody th, .apple-table-examples tfoot th { font: inherit; text-align: left; }
                    240:    .apple-table-examples td { text-align: right; vertical-align: top; }
                    241:    .apple-table-examples.e1 tbody tr:last-child td { border-bottom: solid 1px; }
                    242:    .apple-table-examples.e1 tbody + tbody tr:last-child td { border-bottom: double 3px; }
                    243:    .apple-table-examples.e2 th[scope=row] { padding-left: 1em; }
                    244:    .apple-table-examples sup { line-height: 0; }
                    245: 
                    246:    .details-example img { vertical-align: top; }
                    247: 
                    248:    #base64-table {
                    249:      white-space: nowrap;
                    250:      font-size: 0.6em;
                    251:      column-width: 6em;
                    252:      column-count: 5;
                    253:      column-gap: 1em;
                    254:      -moz-column-width: 6em;
                    255:      -moz-column-count: 5;
                    256:      -moz-column-gap: 1em;
                    257:      -webkit-column-width: 6em;
                    258:      -webkit-column-count: 5;
                    259:      -webkit-column-gap: 1em;
                    260:    }
                    261:    #base64-table thead { display: none; }
                    262:    #base64-table * { border: none; }
                    263:    #base64-table tbody td:first-child:after { content: ':'; }
                    264:    #base64-table tbody td:last-child { text-align: right; }
                    265: 
                    266:    #named-character-references-table {
                    267:      white-space: nowrap;
                    268:      font-size: 0.6em;
                    269:      column-width: 30em;
                    270:      column-gap: 1em;
                    271:      -moz-column-width: 30em;
                    272:      -moz-column-gap: 1em;
                    273:      -webkit-column-width: 30em;
                    274:      -webkit-column-gap: 1em;
                    275:    }
                    276:    #named-character-references-table > table > tbody > tr > td:first-child + td,
                    277:    #named-character-references-table > table > tbody > tr > td:last-child { text-align: center; }
                    278:    #named-character-references-table > table > tbody > tr > td:last-child:hover > span { position: absolute; top: auto; left: auto; margin-left: 0.5em; line-height: 1.2; font-size: 5em; border: outset; padding: 0.25em 0.5em; background: white; width: 1.25em; height: auto; text-align: center; }
                    279:    #named-character-references-table > table > tbody > tr#entity-CounterClockwiseContourIntegral > td:first-child { font-size: 0.5em; }
                    280: 
                    281:    .glyph.control { color: red; }
                    282: 
                    283:    @font-face {
                    284:      font-family: 'Essays1743';
1.178     sruby     285:      src: url('../fonts/Essays1743.ttf');
1.1       mike      286:    }
                    287:    @font-face {
                    288:      font-family: 'Essays1743';
                    289:      font-weight: bold;
1.178     sruby     290:      src: url('../fonts/Essays1743-Bold.ttf');
1.1       mike      291:    }
                    292:    @font-face {
                    293:      font-family: 'Essays1743';
                    294:      font-style: italic;
1.178     sruby     295:      src: url('../fonts/Essays1743-Italic.ttf');
1.1       mike      296:    }
                    297:    @font-face {
                    298:      font-family: 'Essays1743';
                    299:      font-style: italic;
                    300:      font-weight: bold;
1.178     sruby     301:      src: url('../fonts/Essays1743-BoldItalic.ttf');
1.1       mike      302:    }
                    303: 
1.159     sruby     304:   </style><link href="data:text/css," id="complete" rel="stylesheet" title="Complete specification"><link href="data:text/css,.impl%20%7B%20display:%20none;%20%7D%0Ahtml%20%7B%20border:%20solid%20yellow;%20%7D%20.domintro:before%20%7B%20display:%20none;%20%7D" id="author" rel="alternate stylesheet" title="Author documentation only"><link href="data:text/css,.impl%20%7B%20background:%20%23FFEEEE;%20%7D%20.domintro:before%20%7B%20background:%20%23FFEEEE;%20%7D" id="highlight" rel="alternate stylesheet" title="Highlight implementation requirements"><script>
1.1       mike      305:    function getCookie(name) {
                    306:      var params = location.search.substr(1).split("&");
                    307:      for (var index = 0; index < params.length; index++) {
                    308:        if (params[index] == name)
                    309:          return "1";
                    310:        var data = params[index].split("=");
                    311:        if (data[0] == name)
                    312:          return unescape(data[1]);
                    313:      }
                    314:      var cookies = document.cookie.split("; ");
                    315:      for (var index = 0; index < cookies.length; index++) {
                    316:        var data = cookies[index].split("=");
                    317:        if (data[0] == name)
                    318:          return unescape(data[1]);
                    319:      }
                    320:      return null;
                    321:    }
1.193     sruby     322:   </script><link href="the-option-element.html" title="4.10.12 The option element" rel="prev">
                    323:   <link href="spec.html#contents" title="Table of contents" rel="contents">
1.1       mike      324:   <link href="the-keygen-element.html" title="4.10.14 The keygen element" rel="next">
1.22      mike      325:   </head><body onload="fixBrokenLink();" class="split chapter"><div class="head" id="head">
1.1       mike      326:    <p><a href="http://www.w3.org/"><img alt="W3C" height="48" src="http://www.w3.org/Icons/w3c_home" width="72"></a></p>
                    327: 
                    328:    <h1>HTML5</h1>
1.193     sruby     329:    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
1.196   ! sruby     330:    <h2 class="no-num no-toc" id="editor's-draft-date-1-january-1970">Editor's Draft 10 October 2012</h2>
1.85      mike      331:    </div>
1.193     sruby     332:    <div class="prev_next">
1.1       mike      333:    <a href="the-option-element.html">&#8592; 4.10.12 The option element</a> &#8211;
1.193     sruby     334:    <a href="spec.html#contents">Table of contents</a> &#8211;
1.1       mike      335:    <a href="the-keygen-element.html">4.10.14 The keygen element &#8594;</a>
1.193     sruby     336:   </div>
1.1       mike      337: 
1.85      mike      338:   <h4 id="the-textarea-element"><span class="secno">4.10.13 </span>The <dfn><code>textarea</code></dfn> element</h4>
                    339: 
                    340:   <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" title="element-dfn-categories">Categories</a>:</dt>
1.159     sruby     341:    <dd><a href="content-models.html#flow-content-1">Flow content</a>.</dd>
                    342:    <dd><a href="content-models.html#phrasing-content-1">Phrasing content</a>.</dd>
                    343:    <dd><a href="content-models.html#interactive-content-0">Interactive content</a>.</dd>
1.1       mike      344:    <dd><a href="forms.html#category-listed" title="category-listed">Listed</a>, <a href="forms.html#category-label" title="category-label">labelable</a>, <a href="forms.html#category-submit" title="category-submit">submittable</a>, and <a href="forms.html#category-reset" title="category-reset">resettable</a> <a href="forms.html#form-associated-element">form-associated element</a>.</dd>
1.159     sruby     345:    <dd><a href="content-models.html#palpable-content-0">Palpable content</a>.</dd>
1.25      mike      346:    <dt><a href="element-definitions.html#element-dfn-contexts" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt>
1.159     sruby     347:    <dd>Where <a href="content-models.html#phrasing-content-1">phrasing content</a> is expected.</dd>
1.25      mike      348:    <dt><a href="element-definitions.html#element-dfn-content-model" title="element-dfn-content-model">Content model</a>:</dt>
1.1       mike      349:    <dd><a href="content-models.html#text-content" title="text content">Text</a>.</dd>
1.25      mike      350:    <dt><a href="element-definitions.html#element-dfn-attributes" title="element-dfn-attributes">Content attributes</a>:</dt>
1.1       mike      351:    <dd><a href="global-attributes.html#global-attributes">Global attributes</a></dd>
                    352:    <dd><code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus">autofocus</a></code></dd>
                    353:    <dd><code title="attr-textarea-cols"><a href="#attr-textarea-cols">cols</a></code></dd>
                    354:    <dd><code title="attr-textarea-dirname"><a href="#attr-textarea-dirname">dirname</a></code></dd>
                    355:    <dd><code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled">disabled</a></code></dd>
                    356:    <dd><code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">form</a></code></dd>
                    357:    <dd><code title="attr-textarea-maxlength"><a href="#attr-textarea-maxlength">maxlength</a></code></dd>
                    358:    <dd><code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name">name</a></code></dd>
                    359:    <dd><code title="attr-textarea-placeholder"><a href="#attr-textarea-placeholder">placeholder</a></code></dd>
                    360:    <dd><code title="attr-textarea-readonly"><a href="#attr-textarea-readonly">readonly</a></code></dd>
                    361:    <dd><code title="attr-textarea-required"><a href="#attr-textarea-required">required</a></code></dd>
                    362:    <dd><code title="attr-textarea-rows"><a href="#attr-textarea-rows">rows</a></code></dd>
                    363:    <dd><code title="attr-textarea-wrap"><a href="#attr-textarea-wrap">wrap</a></code></dd>
1.159     sruby     364:    <dt><a href="element-definitions.html#element-dfn-dom" title="element-dfn-dom">DOM interface</a>:</dt><!--TOPIC:DOM APIs-->
1.1       mike      365:    <dd>
                    366: <pre class="idl">interface <dfn id="htmltextareaelement">HTMLTextAreaElement</dfn> : <a href="elements.html#htmlelement">HTMLElement</a> {
                    367:            attribute boolean <a href="attributes-common-to-form-controls.html#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>;
                    368:            attribute unsigned long <a href="#dom-textarea-cols" title="dom-textarea-cols">cols</a>;
                    369:            attribute DOMString <a href="#dom-textarea-dirname" title="dom-textarea-dirName">dirName</a>;
                    370:            attribute boolean <a href="attributes-common-to-form-controls.html#dom-fe-disabled" title="dom-fe-disabled">disabled</a>;
                    371:   readonly attribute <a href="the-form-element.html#htmlformelement">HTMLFormElement</a>? <a href="association-of-controls-and-forms.html#dom-fae-form" title="dom-fae-form">form</a>;
                    372:            attribute long <a href="#dom-textarea-maxlength" title="dom-textarea-maxLength">maxLength</a>;
                    373:            attribute DOMString <a href="attributes-common-to-form-controls.html#dom-fe-name" title="dom-fe-name">name</a>;
                    374:            attribute DOMString <a href="#dom-textarea-placeholder" title="dom-textarea-placeholder">placeholder</a>;
                    375:            attribute boolean <a href="#dom-textarea-readonly" title="dom-textarea-readOnly">readOnly</a>;
                    376:            attribute boolean <a href="#dom-textarea-required" title="dom-textarea-required">required</a>;
                    377:            attribute unsigned long <a href="#dom-textarea-rows" title="dom-textarea-rows">rows</a>;
                    378:            attribute DOMString <a href="#dom-textarea-wrap" title="dom-textarea-wrap">wrap</a>;
                    379: 
                    380:   readonly attribute DOMString <a href="#dom-textarea-type" title="dom-textarea-type">type</a>;
                    381:            attribute DOMString <a href="#dom-textarea-defaultvalue" title="dom-textarea-defaultValue">defaultValue</a>;
                    382:            attribute DOMString <a href="#dom-textarea-value" title="dom-textarea-value">value</a>;
                    383:   readonly attribute unsigned long <a href="#dom-textarea-textlength" title="dom-textarea-textLength">textLength</a>;
                    384: 
1.193     sruby     385:   readonly attribute boolean <a href="textFieldSelection.html#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>;
                    386:   readonly attribute <a href="textFieldSelection.html#validitystate">ValidityState</a> <a href="textFieldSelection.html#dom-cva-validity" title="dom-cva-validity">validity</a>;
                    387:   readonly attribute DOMString <a href="textFieldSelection.html#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>;
                    388:   boolean <a href="textFieldSelection.html#dom-cva-checkvalidity" title="dom-cva-checkValidity">checkValidity</a>();
                    389:   void <a href="textFieldSelection.html#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(DOMString error);
1.1       mike      390: 
                    391:   readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="the-label-element.html#dom-lfe-labels" title="dom-lfe-labels">labels</a>;
                    392: 
1.193     sruby     393:   void <span title="dom-textarea/input-select">select</span>();
                    394:            attribute unsigned long <span title="dom-textarea/input-selectionStart">selectionStart</span>;
                    395:            attribute unsigned long <span title="dom-textarea/input-selectionEnd">selectionEnd</span>;
                    396:            attribute DOMString <span title="dom-textarea/input-selectionDirection">selectionDirection</span>;
1.159     sruby     397: 
1.193     sruby     398:   void <span title="dom-textarea/input-setSelectionRange">setSelectionRange</span>(unsigned long start, unsigned long end, optional DOMString direction);
1.1       mike      399: };</pre>
                    400:    </dd>
1.193     sruby     401:   </dl><!--TOPIC:HTML--><p>The <code><a href="#the-textarea-element">textarea</a></code> element <a href="textFieldSelection.html#represents">represents</a> a
1.1       mike      402:   multiline plain text edit control<span class="impl"> for the
                    403:   element's <dfn id="concept-textarea-raw-value" title="concept-textarea-raw-value">raw
                    404:   value</dfn></span>. The contents of the control represent the
1.85      mike      405:   control's default value.</p>
                    406: 
                    407:   <div class="impl">
1.1       mike      408: 
                    409:   <p>The <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> of
                    410:   a <code><a href="#the-textarea-element">textarea</a></code> control must be initially the empty
                    411:   string.</p>
                    412: 
                    413:   <p>A newline in a <code><a href="#the-textarea-element">textarea</a></code> element, and in its <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a>, should separate
                    414:   paragraphs for the purposes of the Unicode bidirectional algorithm.
                    415:   This requirement may be implemented indirectly through the style
                    416:   layer. For example, an HTML+CSS user agent could implement these
1.193     sruby     417:   requirements by implementing the CSS 'unicode-bidi' property. <a href="textFieldSelection.html#refsBIDI">[BIDI]</a> <a href="textFieldSelection.html#refsCSS">[CSS]</a></p>
1.1       mike      418: 
1.85      mike      419:   </div>
                    420: 
                    421:   <p>The <dfn id="attr-textarea-readonly" title="attr-textarea-readonly"><code>readonly</code></dfn> attribute
1.1       mike      422:   is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a> used to control whether the text
1.85      mike      423:   can be edited by the user or not.</p>
                    424: 
1.193     sruby     425:   <div class="example">
                    426: 
                    427:    <p>In this example, a text field is marked read-only because it
                    428:    represents a read-only file:</p>
                    429: 
                    430:    <pre>Filename: &lt;code&gt;/etc/bash.bashrc&lt;/code&gt;
                    431: &lt;textarea name="buffer" readonly&gt;
                    432: # System-wide .bashrc file for interactive bash(1) shells.
                    433: 
                    434: # To enable the settings / commands in this file for login shells as well,
                    435: # this file has to be sourced in /etc/profile.
                    436: 
                    437: # If not running interactively, don't do anything
                    438: [ -z "$PS1" ] &amp;amp;&amp;amp; return
                    439: 
                    440: ...&lt;/textarea&gt;</pre>
                    441: 
                    442:   </div>
                    443: 
1.85      mike      444:   <div class="impl">
1.1       mike      445: 
                    446:   <p><strong>Constraint validation</strong>: If the <code title="attr-textarea-readonly"><a href="#attr-textarea-readonly">readonly</a></code> attribute is
                    447:   specified on a <code><a href="#the-textarea-element">textarea</a></code> element, the element is
1.193     sruby     448:   <a href="textFieldSelection.html#barred-from-constraint-validation">barred from constraint validation</a>.</p>
1.1       mike      449: 
                    450:   <p>A <code><a href="#the-textarea-element">textarea</a></code> element is <dfn id="concept-textarea-mutable" title="concept-textarea-mutable">mutable</dfn> if it is neither
                    451:   <a href="attributes-common-to-form-controls.html#concept-fe-disabled" title="concept-fe-disabled">disabled</a> nor has a <code title="attr-textarea-readonly"><a href="#attr-textarea-readonly">readonly</a></code> attribute
                    452:   specified.</p>
                    453: 
                    454:   <p>When a <code><a href="#the-textarea-element">textarea</a></code> is <a href="#concept-textarea-mutable" title="concept-textarea-mutable">mutable</a>, its <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> should be
                    455:   editable by the user: the user agent should allow the user to edit,
                    456:   insert, and remove text, and to insert and remove line breaks in the
1.85      mike      457:   form of "LF" (U+000A) characters. Any time the user causes
1.1       mike      458:   the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw
1.193     sruby     459:   value</a> to change, the user agent must <a href="textFieldSelection.html#queue-a-task">queue a
                    460:   task</a> to <a href="textFieldSelection.html#fire-a-simple-event">fire a simple event</a> that bubbles named
1.1       mike      461:   <code title="event-input">input</code> at the <code><a href="#the-textarea-element">textarea</a></code>
                    462:   element. User agents may wait for a suitable break in the user's
                    463:   interaction before queuing the task; for example, a user agent could
                    464:   wait for the user to have not hit a key for 100ms, so as to only
                    465:   fire the event when the user pauses, instead of continuously for
1.159     sruby     466:   each keystroke.</p> <!-- same text is present in the <input> section
                    467:   -->
1.4       mike      468: 
1.1       mike      469:   <p>A <code><a href="#the-textarea-element">textarea</a></code> element has a <dfn id="concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</dfn>, which must be
                    470:   initially set to false, and must be set to true whenever the user
                    471:   interacts with the control in a way that changes the <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a>.</p>
                    472: 
                    473:   <p>When the <code><a href="#the-textarea-element">textarea</a></code> element's <code><a href="infrastructure.html#textcontent">textContent</a></code>
                    474:   IDL attribute changes value, if the element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a> is false,
                    475:   then the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw
                    476:   value</a> must be set to the value of the element's
                    477:   <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p>
                    478: 
1.193     sruby     479:   <p>The <a href="textFieldSelection.html#concept-form-reset-control" title="concept-form-reset-control">reset
1.1       mike      480:   algorithm</a> for <code><a href="#the-textarea-element">textarea</a></code> elements is to set the
                    481:   element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">value</a> to
                    482:   the value of the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL
                    483:   attribute.</p>
                    484: 
1.159     sruby     485:   <!-- this next bit is also in the <input> Text/Search section -->
                    486:   <!-- and something similar is in the session history section -->
1.1       mike      487:   <p>If the element is <a href="#concept-textarea-mutable" title="concept-textarea-mutable">mutable</a>, the user agent
                    488:   should allow the user to change the writing direction of the
                    489:   element, setting it either to a left-to-right writing direction or a
                    490:   right-to-left writing direction. If the user does so, the user agent
                    491:   must then run the following steps:</p>
                    492: 
                    493:   <ol><li><p>Set the element's <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute">dir</a></code>
                    494:    attribute to "<code title="attr-dir-ltr"><a href="global-attributes.html#attr-dir-ltr">ltr</a></code>" if the user
                    495:    selected a left-to-right writing direction, and "<code title="attr-dir-rtl"><a href="global-attributes.html#attr-dir-rtl">rtl</a></code>" if the user selected a
                    496:    right-to-left writing direction.</p></li>
                    497: 
1.193     sruby     498:    <li><p><a href="textFieldSelection.html#queue-a-task">Queue a task</a> to <a href="textFieldSelection.html#fire-a-simple-event">fire a simple
1.1       mike      499:    event</a> that bubbles named <code title="event-input">input</code> at the <code><a href="#the-textarea-element">textarea</a></code>
                    500:    element.</p></li>
                    501: 
1.85      mike      502:   </ol></div>
                    503: 
                    504:   <p>The <dfn id="attr-textarea-cols" title="attr-textarea-cols"><code>cols</code></dfn>
1.1       mike      505:   attribute specifies the expected maximum number of characters per
                    506:   line. If the <code title="attr-textarea-cols"><a href="#attr-textarea-cols">cols</a></code> attribute
                    507:   is specified, its value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer">valid non-negative
                    508:   integer</a> greater than zero. <span class="impl">If applying the
                    509:   <a href="common-microsyntaxes.html#rules-for-parsing-non-negative-integers">rules for parsing non-negative integers</a> to the
                    510:   attribute's value results in a number greater than zero, then the
                    511:   element's <dfn id="attr-textarea-cols-value" title="attr-textarea-cols-value">character
1.85      mike      512:   width</dfn> is that value; otherwise, it is 20.</span></p>
                    513: 
                    514:   <div class="impl">
1.1       mike      515: 
                    516:   <p>The user agent may use the <code><a href="#the-textarea-element">textarea</a></code> element's <a href="#attr-textarea-cols-value" title="attr-textarea-cols-value">character width</a> as a hint to
                    517:   the user as to how many characters the server prefers per line
                    518:   (e.g. for visual user agents by making the width of the control be
                    519:   that many characters). In visual renderings, the user agent should
                    520:   wrap the user's input in the rendering so that each line is no wider
                    521:   than this number of characters.</p>
                    522: 
1.85      mike      523:   </div>
                    524: 
                    525:   <p>The <dfn id="attr-textarea-rows" title="attr-textarea-rows"><code>rows</code></dfn>
1.1       mike      526:   attribute specifies the number of lines to show. If the <code title="attr-textarea-rows"><a href="#attr-textarea-rows">rows</a></code> attribute is specified, its
                    527:   value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer">valid non-negative integer</a> greater than
                    528:   zero. <span class="impl">If applying the <a href="common-microsyntaxes.html#rules-for-parsing-non-negative-integers">rules for parsing
                    529:   non-negative integers</a> to the attribute's value results in a
                    530:   number greater than zero, then the element's <dfn id="attr-textarea-rows-value" title="attr-textarea-rows-value">character height</dfn> is that
1.85      mike      531:   value; otherwise, it is 2.</span></p>
                    532: 
                    533:   <div class="impl">
1.1       mike      534: 
                    535:   <p>Visual user agents should set the height of the control to the
                    536:   number of lines given by <a href="#attr-textarea-rows-value" title="attr-textarea-rows-value">character height</a>.</p>
                    537: 
1.85      mike      538:   </div>
                    539: 
                    540:   <p>The <dfn id="attr-textarea-wrap" title="attr-textarea-wrap"><code>wrap</code></dfn>
1.1       mike      541:   attribute is an <a href="common-microsyntaxes.html#enumerated-attribute">enumerated attribute</a> with two keywords
                    542:   and states: the <dfn id="attr-textarea-wrap-soft" title="attr-textarea-wrap-soft"><code>soft</code></dfn> keyword
                    543:   which maps to the <a href="#attr-textarea-wrap-soft-state" title="attr-textarea-wrap-soft-state">Soft</a> state, and the
                    544:   <dfn id="attr-textarea-wrap-hard" title="attr-textarea-wrap-hard"><code>hard</code></dfn> keyword
                    545:   which maps to the <a href="#attr-textarea-wrap-hard-state" title="attr-textarea-wrap-hard-state">Hard</a> state. The
1.85      mike      546:   <i>missing value default</i> is the <a href="#attr-textarea-wrap-soft-state" title="attr-textarea-wrap-soft-state">Soft</a> state.</p>
                    547: 
                    548:   <p>The <dfn id="attr-textarea-wrap-soft-state" title="attr-textarea-wrap-soft-state">Soft</dfn> state
1.1       mike      549:   indicates that the text in the <code><a href="#the-textarea-element">textarea</a></code> is not to be
                    550:   wrapped when it is submitted (though it can still be wrapped in the
1.85      mike      551:   rendering).</p>
                    552: 
                    553:   <p>The <dfn id="attr-textarea-wrap-hard-state" title="attr-textarea-wrap-hard-state">Hard</dfn> state
1.1       mike      554:   indicates that the text in the <code><a href="#the-textarea-element">textarea</a></code> is to have
                    555:   newlines added by the user agent so that the text is wrapped when it
1.85      mike      556:   is submitted.</p>
                    557: 
                    558:   <p>If the element's <code title="attr-textarea-wrap"><a href="#attr-textarea-wrap">wrap</a></code>
1.1       mike      559:   attribute is in the <a href="#attr-textarea-wrap-hard-state" title="attr-textarea-wrap-hard-state">Hard</a> state, the <code title="attr-textarea-cols"><a href="#attr-textarea-cols">cols</a></code> attribute must be
1.85      mike      560:   specified.</p>
                    561: 
1.159     sruby     562:   <!-- attr-textarea-wrap-off (attr-textarea-wrap-off-state): not
                    563:   conforming; turns off the rendering of wrapping but otherwise acts
                    564:   like 'soft' -->
1.85      mike      565: 
                    566:   <div class="impl">
1.1       mike      567: 
                    568:   <p>For historical reasons, the element's value is normalised in
                    569:   three different ways for three different purposes. The <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> is the value as
                    570:   it was originally set. It is not normalized. The <a href="#concept-textarea-api-value" title="concept-textarea-api-value">API value</a> is the value
                    571:   used in the <code title="dom-textarea-value"><a href="#dom-textarea-value">value</a></code> IDL
1.85      mike      572:   attribute. It is normalized so that line breaks use "LF" (U+000A) characters. Finally, there is the form submission <a href="attributes-common-to-form-controls.html#concept-fe-value" title="concept-fe-value">value</a>. It is normalized so that line
1.1       mike      573:   breaks use U+000D CARRIAGE RETURN U+000A LINE FEED (CRLF) character
                    574:   pairs, and in addition, if necessary given the element's <code title="attr-textarea-wrap"><a href="#attr-textarea-wrap">wrap</a></code> attribute, additional line
                    575:   breaks are inserted to wrap the text at the given width.</p>
                    576: 
                    577:   <p>The element's <dfn id="concept-textarea-api-value" title="concept-textarea-api-value">API
                    578:   value</dfn> is defined to be the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> with the
                    579:   following transformation applied:</p>
                    580: 
                    581:   <ol><li><p>Replace every U+000D CARRIAGE RETURN U+000A LINE FEED (CRLF)
                    582:    character pair from the <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> with a single
1.184     sruby     583:    "LF" (U+000A) character.</p></li>
1.1       mike      584: 
                    585:    <li><p>Replace every remaining U+000D CARRIAGE RETURN character from
                    586:    the <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> with
1.184     sruby     587:    a single "LF" (U+000A) character.</p></li>
1.1       mike      588: 
                    589:   </ol><p>The element's <a href="attributes-common-to-form-controls.html#concept-fe-value" title="concept-fe-value">value</a> is
                    590:   defined to be the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> with the
                    591:   following transformation applied:</p>
                    592: 
1.85      mike      593:   <ol><li><p>Replace every occurrence of a "CR" (U+000D)
                    594:    character not followed by a "LF" (U+000A) character, and
                    595:    every occurrence of a "LF" (U+000A) character not preceded
                    596:    by a "CR" (U+000D) character, by a two-character
1.1       mike      597:    string consisting of a U+000D CARRIAGE RETURN U+000A LINE FEED
                    598:    (CRLF) character pair.</p></li>
                    599: 
                    600:    <li><p>If the element's <code title="attr-textarea-wrap"><a href="#attr-textarea-wrap">wrap</a></code> attribute is in the <a href="#attr-textarea-wrap-hard-state" title="attr-textarea-wrap-hard-state">Hard</a> state, insert
                    601:    U+000D CARRIAGE RETURN U+000A LINE FEED (CRLF) character pairs
                    602:    into the string using a UA-defined algorithm so that each line has
                    603:    no more than <a href="#attr-textarea-cols-value" title="attr-textarea-cols-value">character
                    604:    width</a> characters. For the purposes of this requirement,
                    605:    lines are delimited by the start of the string, the end of the
                    606:    string, and U+000D CARRIAGE RETURN U+000A LINE FEED (CRLF)
                    607:    character pairs.</p></li>
                    608: 
1.85      mike      609:   </ol></div>
                    610: 
                    611:   <p>The <dfn id="attr-textarea-maxlength" title="attr-textarea-maxlength"><code>maxlength</code></dfn>
1.1       mike      612:   attribute is a <a href="attributes-common-to-form-controls.html#attr-fe-maxlength" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a> controlled by the
1.85      mike      613:   <code><a href="#the-textarea-element">textarea</a></code> element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a>.</p>
                    614: 
                    615:   <p>If the <code><a href="#the-textarea-element">textarea</a></code> element has a <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length">maximum allowed
1.1       mike      616:   value length</a>, then the element's children must be such that
1.125     mike      617:   the <a href="infrastructure.html#code-unit-length">code-unit length</a> of the value of the element's
1.1       mike      618:   <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute is equal to or less than the
1.85      mike      619:   element's <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length">maximum allowed value length</a>.</p>
                    620: 
                    621:   <p>The <dfn id="attr-textarea-required" title="attr-textarea-required"><code>required</code></dfn> attribute
1.1       mike      622:   is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a>. When specified, the user will
1.85      mike      623:   be required to enter a value before submitting the form.</p>
                    624: 
                    625:   <div class="impl">
1.1       mike      626: 
                    627:   <p><strong>Constraint validation</strong>: If the element has its
                    628:   <code title="attr-textarea-required"><a href="#attr-textarea-required">required</a></code> attribute
                    629:   specified, and the element is <a href="#concept-textarea-mutable" title="concept-textarea-mutable">mutable</a>, and the element's
                    630:   <a href="attributes-common-to-form-controls.html#concept-fe-value" title="concept-fe-value">value</a> is the empty string,
1.193     sruby     631:   then the element is <a href="textFieldSelection.html#suffering-from-being-missing">suffering from being missing</a>.</p>
1.1       mike      632: 
1.85      mike      633:   </div>
                    634: 
                    635: 
1.193     sruby     636:   <!-- substantially similar text in the <input> section -->
1.85      mike      637: 
                    638:   <p>The <dfn id="attr-textarea-placeholder" title="attr-textarea-placeholder"><code>placeholder</code></dfn>
1.193     sruby     639:   attribute represents a <em>short</em> hint (a word or short phrase)
                    640:   intended to aid the user with data entry when the control has no
                    641:   value. A hint could be a sample value or a brief description of the
                    642:   expected format. The attribute, if specified, must have a value that
                    643:   contains no "LF" (U+000A) or "CR" (U+000D)
                    644:   characters.</p>
1.85      mike      645: 
                    646:   <p>The <code title="attr-textarea-placeholder"><a href="#attr-textarea-placeholder">placeholder</a></code>
1.1       mike      647:   attribute should not be used as an alternative to a
1.193     sruby     648:   <code><a href="the-label-element.html#the-label-element">label</a></code>. For a longer hint or other advisory text, the
                    649:   <code title="attr-title"><a href="global-attributes.html#attr-title">title</a></code> attribute is more
                    650:   appropriate.</p>
                    651: 
                    652:   <p class="note">These mechanisms are very similar but subtly
                    653:   different: the hint given by the control's <code><a href="the-label-element.html#the-label-element">label</a></code> is
                    654:   shown at all times; the short hint given in the <code title="attr-textarea-placeholder"><a href="#attr-textarea-placeholder">placeholder</a></code> attribute is
                    655:   shown before the user enters a value; and the hint in the <code title="attr-title"><a href="global-attributes.html#attr-title">title</a></code> attribute is shown when the user
                    656:   requests further help.</p>
1.85      mike      657: 
                    658:   <div class="impl">
1.1       mike      659: 
                    660:   <p>User agents should present this hint to the user, after having
                    661:   <a href="common-microsyntaxes.html#strip-line-breaks" title="strip line breaks">stripped line breaks</a> from it,
                    662:   when the element's <a href="attributes-common-to-form-controls.html#concept-fe-value" title="concept-fe-value">value</a> is
                    663:   the empty string and the control is not focused (e.g. by displaying
                    664:   it inside a blank unfocused control).</p>
                    665: 
1.85      mike      666:   </div>
                    667: 
                    668:   <p>The <dfn id="attr-textarea-dirname" title="attr-textarea-dirname"><code>dirname</code></dfn>
1.159     sruby     669:   attribute is a <a href="form-submission.html#form-control-dirname-attribute">form control <code title="">dirname</code>
1.85      mike      670:   attribute</a>.</p>
                    671: 
                    672:   <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">form</a></code> attribute is used to
1.1       mike      673:   explicitly associate the <code><a href="#the-textarea-element">textarea</a></code> element with its
                    674:   <a href="association-of-controls-and-forms.html#form-owner">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name">name</a></code>
                    675:   attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled">disabled</a></code> attribute is used to make
                    676:   the control non-interactive and to prevent its value from being
                    677:   submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus">autofocus</a></code>
1.85      mike      678:   attribute controls focus.</p>
                    679: 
1.159     sruby     680: <!--TOPIC:DOM APIs-->
1.85      mike      681:   <dl class="domintro"><dt><var title="">textarea</var> . <code title="attr-textarea-type">type</code></dt>
1.1       mike      682: 
                    683:    <dd>
                    684: 
                    685:     <p>Returns the string "<code title="">textarea</code>".</p>
                    686: 
                    687:    </dd>
                    688: 
                    689:    <dt><var title="">textarea</var> . <code title="attr-textarea-value">value</code></dt>
                    690: 
                    691:    <dd>
                    692: 
                    693:     <p>Returns the current value of the element.</p>
                    694: 
                    695:     <p>Can be set, to change the value.</p>
                    696: 
                    697:    </dd>
                    698: 
                    699:   </dl><div class="impl">
                    700: 
                    701:   <p>The <dfn id="dom-textarea-cols" title="dom-textarea-cols"><code>cols</code></dfn>, <dfn id="dom-textarea-placeholder" title="dom-textarea-placeholder"><code>placeholder</code></dfn>,
                    702:   <dfn id="dom-textarea-required" title="dom-textarea-required"><code>required</code></dfn>, <dfn id="dom-textarea-rows" title="dom-textarea-rows"><code>rows</code></dfn>, and <dfn id="dom-textarea-wrap" title="dom-textarea-wrap"><code>wrap</code></dfn> attributes must
                    703:   <a href="common-dom-interfaces.html#reflect">reflect</a> the respective content attributes of the same
                    704:   name. The <code title="dom-textarea-cols"><a href="#dom-textarea-cols">cols</a></code> and <code title="dom-textarea-rows"><a href="#dom-textarea-rows">rows</a></code> attributes are <a href="common-dom-interfaces.html#limited-to-only-non-negative-numbers-greater-than-zero">limited
                    705:   to only non-negative numbers greater than zero</a>. The <code title="dom-textarea-cols"><a href="#dom-textarea-cols">cols</a></code> attribute's default value is
                    706:   20. The <code title="dom-textarea-rows"><a href="#dom-textarea-rows">rows</a></code> attribute's
                    707:   default value is 2. The <dfn id="dom-textarea-dirname" title="dom-textarea-dirName"><code>dirName</code></dfn> IDL
                    708:   attribute must <a href="common-dom-interfaces.html#reflect">reflect</a> the <code title="attr-textarea-dirname"><a href="#attr-textarea-dirname">dirname</a></code> content attribute. The
                    709:   <dfn id="dom-textarea-maxlength" title="dom-textarea-maxLength"><code>maxLength</code></dfn> IDL
                    710:   attribute must <a href="common-dom-interfaces.html#reflect">reflect</a> the <code title="attr-textarea-maxlength"><a href="#attr-textarea-maxlength">maxlength</a></code> content attribute,
                    711:   <a href="common-dom-interfaces.html#limited-to-only-non-negative-numbers">limited to only non-negative numbers</a>. The <dfn id="dom-textarea-readonly" title="dom-textarea-readOnly"><code>readOnly</code></dfn> IDL
                    712:   attribute must <a href="common-dom-interfaces.html#reflect">reflect</a> the <code title="attr-textarea-readonly"><a href="#attr-textarea-readonly">readonly</a></code> content
                    713:   attribute.</p>
                    714: 
                    715:   <p>The <dfn id="dom-textarea-type" title="dom-textarea-type"><code>type</code></dfn> IDL
                    716:   attribute must return the value "<code title="">textarea</code>".</p>
                    717: 
                    718:   <p>The <dfn id="dom-textarea-defaultvalue" title="dom-textarea-defaultValue"><code>defaultValue</code></dfn>
                    719:   IDL attribute must act like the element's <code><a href="infrastructure.html#textcontent">textContent</a></code>
                    720:   IDL attribute.</p>
                    721: 
                    722:   <p>The <dfn id="dom-textarea-value" title="dom-textarea-value"><code>value</code></dfn>
                    723:   attribute must, on getting, return the element's <a href="#concept-textarea-api-value" title="concept-textarea-api-value">API value</a>; on setting, it
                    724:   must set the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw
                    725:   value</a> to the new value, set the element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a> to true, and
                    726:   should then move the text entry cursor position to the end of the
                    727:   text field, unselecting any selected text and resetting the
                    728:   selection direction to <i>none</i>.</p>
                    729: 
                    730:   <p>The <dfn id="dom-textarea-textlength" title="dom-textarea-textLength"><code>textLength</code></dfn> IDL
1.125     mike      731:   attribute must return the <a href="infrastructure.html#code-unit-length">code-unit length</a> of the
1.1       mike      732:   element's <a href="#concept-textarea-api-value" title="concept-textarea-api-value">API
                    733:   value</a>.</p>
                    734: 
1.193     sruby     735:   <p>The <code title="dom-cva-willValidate"><a href="textFieldSelection.html#dom-cva-willvalidate">willValidate</a></code>, <code title="dom-cva-validity"><a href="textFieldSelection.html#dom-cva-validity">validity</a></code>, and <code title="dom-cva-validationMessage"><a href="textFieldSelection.html#dom-cva-validationmessage">validationMessage</a></code> IDL
                    736:   attributes, and the <code title="dom-cva-checkValidity"><a href="textFieldSelection.html#dom-cva-checkvalidity">checkValidity()</a></code> and <code title="dom-cva-setCustomValidity"><a href="textFieldSelection.html#dom-cva-setcustomvalidity">setCustomValidity()</a></code>
                    737:   methods, are part of the <a href="textFieldSelection.html#the-constraint-validation-api">constraint validation API</a>. The
1.189     sruby     738:   <code title="dom-lfe-labels"><a href="the-label-element.html#dom-lfe-labels">labels</a></code> IDL attribute provides a
1.193     sruby     739:   list of the element's <code><a href="the-label-element.html#the-label-element">label</a></code>s. The <code title="dom-textarea/input-select">select()</code>, <code title="dom-textarea/input-selectionStart">selectionStart</code>,
                    740:   <code title="dom-textarea/input-selectionEnd">selectionEnd</code>,
                    741:   <code title="dom-textarea/input-selectionDirection">selectionDirection</code>,
1.189     sruby     742:   <code title="dom-textarea/input-setRangeText">setRangeText()</code>,
1.193     sruby     743:   and <code title="dom-textarea/input-setSelectionRange">setSelectionRange()</code>
1.189     sruby     744:   methods and IDL attributes expose the element's text selection. The
1.1       mike      745:   <code title="dom-fe-autofocus"><a href="attributes-common-to-form-controls.html#dom-fe-autofocus">autofocus</a></code>, <code title="dom-fe-disabled"><a href="attributes-common-to-form-controls.html#dom-fe-disabled">disabled</a></code>, <code title="dom-fae-form"><a href="association-of-controls-and-forms.html#dom-fae-form">form</a></code>, and <code title="dom-fe-name"><a href="attributes-common-to-form-controls.html#dom-fe-name">name</a></code> IDL attributes are part of the
                    746:   element's forms API.</p>
                    747: 
1.85      mike      748:   </div>
1.159     sruby     749: <!--TOPIC:HTML-->
1.85      mike      750: 
                    751:   <div class="example">
1.1       mike      752: 
                    753:    <p>Here is an example of a <code><a href="#the-textarea-element">textarea</a></code> being used for
                    754:    unrestricted free-form text input in a form:</p>
                    755: 
                    756:    <pre>&lt;p&gt;If you have any comments, please let us know: &lt;textarea cols=80 name=comments&gt;&lt;/textarea&gt;&lt;/p&gt;</pre>
                    757: 
                    758:    <p>To specify a maximum length for the comments, one can use
                    759:    the <code title="attr-textarea-maxlength"><a href="#attr-textarea-maxlength">maxlength</a></code>
                    760:    attribute:</p>
                    761: 
                    762:    <pre>&lt;p&gt;If you have any short comments, please let us know: &lt;textarea cols=80 name=comments maxlength=200&gt;&lt;/textarea&gt;&lt;/p&gt;</pre>
                    763: 
                    764:    <p>To give a default value, text can be included inside the element:</p>
                    765: 
                    766:    <pre>&lt;p&gt;If you have any comments, please let us know: &lt;textarea cols=80 name=comments&gt;You rock!&lt;/textarea&gt;&lt;/p&gt;</pre>
                    767: 
                    768:    <p>To have the browser submit <a href="global-attributes.html#the-directionality">the directionality</a> of
                    769:    the element along with the value, the <code title="attr-textarea-dirname"><a href="#attr-textarea-dirname">dirname</a></code> attribute can be
                    770:    specified:</p>
                    771: 
                    772:    <pre>&lt;p&gt;If you have any comments, please let us know (you may use either English or Hebrew for your comments):
                    773: &lt;textarea cols=80 name=comments dirname=comments.dir&gt;&lt;/textarea&gt;&lt;/p&gt;</pre>
                    774: 
1.85      mike      775:   </div>
                    776: 
                    777: 
                    778: 
                    779:   </body></html>

Webmaster