[w3m-dev 04112] Re: form の value の改行の扱い
Fumitoshi UKAI <[email protected]>
| Newsgroups | gmane.comp.web.w3m.devel |
|---|---|
| Organization | Debian JP Project |
| Message-ID | <[email protected]> |
At Sat, 30 Oct 2004 22:59:46 +0900 (JST),
Hideyuki SHIRAI () wrote:
> ## multi-part
[w3m-dev 04090] MIME multipart
> form
()
> ( ^^;;;)
> /value
>
> (_ _)
cvs
?
>
> # w3m, emacs-w3m
> # Firefox, IE, NetFront
> ##
HTML 4.0 input value attribute
value CDATA #IMPLIED -- required for radio and checkboxes --
CDATA
CDATA is a sequence of characters from the document character set and may
include character entities. User agents should interpret attribute values
as follows:
Replace character entities with characters,
Ignore line feeds,
Replace each carriage return or tab with a single space.
User agents may ignore leading and trailing white space in CDATA attribute
values (e.g., " myval " may be interpreted as "myval"). Authors should
not declare attribute values with leading or trailing white space.
w3m?
# '\n' ->'\r''\t' -> ' '?
http://www.w3.org/TR/1998/REC-html40-19980424/interact/forms.html#h-17.4
http://www.w3.org/TR/1998/REC-html40-19980424/interact/forms.html#adef-value-INPUT
http://www.w3.org/TR/1998/REC-html40-19980424/types.html#type-cdata
?
--