Remove forwarding shift key events and fix keycode conversion.
authorKarol Furmaniak <k.furmaniak@samsung.com>
Fri, 30 Jan 2015 13:48:28 +0000 (14:48 +0100)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
commitb5857a69833036b6208b5218ae4cbf15a0fc3fc3
tree69d2c12825b83a63cc049b0a6d3e92f987ccc9dc
parent1e79d79d51501810cb136a1636761d0bd036a696
Remove forwarding shift key events and fix keycode conversion.

[Requirement] WCS TC 90

There was unnecessary shift key event forwarding what causes
wrong events dispatching.

Now after press "A" letter, events are:

keydown
keydown
keypress
composition-end
input
keyup
keyup

but it should be:

keydown
keypress
composition-end
input
keyup

This patch fix this.

Added conversion of keycode.

Bug: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=10687
Reviewed by: Antonio Gomes, Piotr Grad

Change-Id: I892c065edc7490ee66425787d59a6596a4adc0d4
Signed-off-by: Karol Furmaniak <k.furmaniak@samsung.com>
tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc
tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.h
tizen_src/impl/browser/renderer_host/web_event_factory_efl.cc