Bug 109092 - text box form entry inserts extra chars
Summary: text box form entry inserts extra chars
Status: RESOLVED FIXED
Alias: None
Product: konqueror
Classification: Applications
Component: khtml ecma (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-07-14 18:40 UTC by Paul Kennedy
Modified: 2006-01-28 21:57 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Kennedy 2005-07-14 18:40:09 UTC
Version:           3.4.0-1.0.rhel3.kde Red Hat (using KDE 3.4.0-1.3.rhel3.kde, CentOS release 3.4 (final))
Compiler:          gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-49)
OS:                Linux (i686) release 2.4.21-27.0.1.EL

Entering text for an sms at http://www.vtext.com/, the text box for the message fills up with random characters after the first line wrap.
Comment 1 Thiago Macieira 2005-07-15 04:04:00 UTC
Confirmed on trunk 433373. The page is probably using some key event handlers to detect keypresses. You can notice that by going into the text box and pressing backspace: the "characters left" counter decreases.

Comment 2 Maksim Orlovich 2006-01-28 21:57:42 UTC
SVN commit 503345 by orlovich:

-Implement selectionStart, selectionEnd, and textLength on textarea
-Fix the value on physical wrapped mode to not invent spaces
-Proper changed check on updateFromElement, so we don't reset the textarea
willy-nilly
Among other things, makes phpBB editting buttons work.
BUG:71451
BUG:79371
BUG:113217
BUG:109092


 M  +34 -0     dom/html_form.cpp  
 M  +39 -1     dom/html_form.h  
 M  +8 -0      ecma/kjs_html.cpp  
 M  +2 -1      ecma/kjs_html.h  
 M  +54 -1     html/html_formimpl.cpp  
 M  +6 -0      html/html_formimpl.h  
 M  +138 -2    rendering/render_form.cpp  
 M  +16 -0     rendering/render_form.h