WebKitTestRunner doesn't need the virtual keyboard to input
text. Generally it types charaters via JavaScript methods.
Disabling the virtual keyboard solves timouts for almost
tests from the editing category.
Change-Id: I0b80d11c7b6d47c65cab4308b1d752d7ef7bc5e9
#include <WebKit2/WKTextChecker.h>
#endif
+#if ENABLE(TIZEN_WEBKIT2_EFL_WTR)
+#include <WebKit2/WKPreferencesTizen.h>
+#endif
+
namespace WTR {
static const double defaultLongTimeout = 30;
WKPreferencesSetAsynchronousSpellCheckingEnabled(preferences, false);
#endif
+#if ENABLE(TIZEN_WEBKIT2_EFL_WTR)
+ WKPreferencesSetEnableDefaultKeypad(preferences, false);
+#endif
+
// in the case that a test using the chrome input field failed, be sure to clean up for the next test
m_mainWebView->removeChromeInputField();
m_mainWebView->focus();