[Webkit-unassigned] [Bug 25721] New: input.value often gets not updated when typing text.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 12 02:46:53 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=25721

           Summary: input.value often gets not updated when typing text.
           Product: WebKit
           Version: 420+
          Platform: S60 Hardware
        OS/Version: S60 3rd edition
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: damman at wxs.nl


On many symbian phones (i.e. Nokia E71) the following page doesn't work most of
the time as expected (the input.value gets updated when typing). As
consequence, most autocomplete components don't work in the browser.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
<script
type="text/javascript" language="Javascript">
function changeValue(inputIn)
{
    document.getElementById("id2").value = inputIn.value;
}
//-->
</script>
<form>
<table>
    <tr><td>Type Here <input type="text" value="start"
onkeyup="changeValue(this);"></td></tr>
    <tr><td>Copy<input id="id2" type="text" value="start"></td></tr>
</table>
</form>
  </body>
</html>


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list