[Webkit-unassigned] [Bug 29375] New: [Qt] JavaScript onChange/onClick handlers are called differently under Linux and Windows
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Sep 18 06:54:06 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=29375
Summary: [Qt] JavaScript onChange/onClick handlers are called
differently under Linux and Windows
Product: WebKit
Version: 528+ (Nightly build)
Platform: Other
OS/Version: Mac OS X 10.5
Status: NEW
Keywords: Qt
Severity: Normal
Priority: P2
Component: New Bugs
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: vestbo at webkit.org
This bug report originated from issue QTBUG-2322
<http://bugreports.qt.nokia.com/browse/QTBUG-2322>
--- Description ---
In the following snippet of HTML the onClicked/onChange handlers are called
differently when entering text and then clicking on the button.
<html>
<body>
<script>
function onChange()
{
alert(document.f1.t1.value);
}
function onClick()
{
alert('onClick');
}
</script>
<FORM name="f1">
<INPUT type=text name="t1" onChange="onChange()"> </INPUT>
<INPUT type=button name="b1" value=button onClick="onClick()"> </INPUT>
</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.
More information about the webkit-unassigned
mailing list