From: hyun lee Date: Thu, 11 Jul 2013 06:06:03 +0000 (+0900) Subject: Fix for issue X-Git-Tag: submit/tizen_2.2/20130714.153306~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=98eda62e321ad1dc2a5a2bdc28f4c2fa74b54483;p=framework%2Fosp%2Fweb.git Fix for issue Change-Id: I6da85cae659ecfeffc1eeb3a74a1a3822bdeccfd Signed-off-by: hyun lee --- diff --git a/src/controls/FWebCtrl_EflWebkit.cpp b/src/controls/FWebCtrl_EflWebkit.cpp index aa56acf..014bd33 100755 --- a/src/controls/FWebCtrl_EflWebkit.cpp +++ b/src/controls/FWebCtrl_EflWebkit.cpp @@ -157,6 +157,7 @@ _EflWebkit::SetWebConfiguration(void) const ewk_context_cache_model_set(pContext, EWK_CACHE_MODEL_PRIMARY_WEBBROWSER); ewk_settings_text_selection_enabled_set(pSettings, EINA_FALSE); + ewk_settings_uses_keypad_without_user_action_set(pSettings, EINA_FALSE); ewk_context_additional_plugin_path_set(pContext, PLUGIN_DIRECTORY_PATH); diff --git a/src/controls/FWebCtrl_WebImpl.cpp b/src/controls/FWebCtrl_WebImpl.cpp index e541ffd..59682ff 100755 --- a/src/controls/FWebCtrl_WebImpl.cpp +++ b/src/controls/FWebCtrl_WebImpl.cpp @@ -1299,13 +1299,6 @@ OnLoadingCompleted(void* pUserData, Evas_Object* pView, void* pEventInfo) void -OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo) -{ - evas_object_focus_set(pView, EINA_FALSE); -} - - -void OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo) { _WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData); @@ -3642,7 +3635,6 @@ _WebImpl::SetEventListenerCallback(void) const evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this); evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this); evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this); - evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this); evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);