Closed
Bug 4486
Opened 26 years ago
Closed 26 years ago
TEXTAREA elements ignore WRAP="SOFT" and WRAP="HARD"
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
People
(Reporter: paul, Assigned: karnaze)
Details
Load the following html into the viewer app (Win32, VC++6.0, NT4.0, optimized
build) and type words into the textarea. When you get to the right margin the
text doesn't wrap. The same is true with WRAP="HARD".
<html>
<form>
<body>
<TEXTAREA COLS=40 ROWS="4" WRAP="SOFT"></TEXTAREA>
</form>
</body>
</html>
Although it doesn't change the behavior, the previous html was invalid. Here's
the corrected text.
<html>
<body>
<form>
<TEXTAREA COLS=40 ROWS="4" WRAP="SOFT"></TEXTAREA>
</form>
</body>
</html>
Assignee | ||
Comment 2•26 years ago
|
||
Paul, where did you find the wrap attribute. I can't find it in the html 4 spec.
It's not valid HTML 4 but it is supported in earlier browsers. This is a
duplicate bug, I believe... investigating...
OK thanks. But to answer your question, the doc I'm using is at
http://developer.netscape.com/docs/manuals/htmlguid/tags10.htm#1340340
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•