Bug 78889 - [Forms][Windows] Text field should not fire oninput event for IME intermediate strings
Summary: [Forms][Windows] Text field should not fire oninput event for IME intermediat...
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: Forms (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL: http://jsfiddle.net/Pwdzc/
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-17 02:50 PST by yosin
Modified: 2012-02-19 23:45 PST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yosin 2012-02-17 02:50:12 PST
== Steps ==
1. Visit http://jsfiddle.net/Pwdzc/
2. Turn IME on
3. set focus to text field
4. Type "1"

== Expected ==
No oninput event == no output

== Result ==
There is text "input(1)"
Comment 1 Alexey Proskuryakov 2012-02-17 09:38:19 PST
Could you please elaborate on why this behavior is desired?

While intermediate text is different from final form for certain input methods, it's not always the case. Users of other input methods will expect the page to react to input immediately.
Comment 2 yosin 2012-02-19 23:45:08 PST
I understand the use case of input event for IME intermediate text. Input events from IME intermediate text are very useful for implementing suggestion feature and others.

Thanks for response as usual!