Changeset 144892 in webkit
- Timestamp:
- Mar 6, 2013, 12:04:39 AM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r144887 r144892 1 2013-03-05 Grzegorz Czajkowski <g.czajkowski@samsung.com> 2 3 [WK2][EFL] Enable asynchronous spell checking by default 4 https://bugs.webkit.org/show_bug.cgi?id=111295 5 6 Reviewed by Benjamin Poulain. 7 8 Asynchronous spell checking feature is disabled by default for wk2 platforms. 9 It means all requests of spell checking are sent synchronously. 10 11 WebKit-EFL implements requestCheckingOfString method which allows 12 to check spelling asynchronously. 13 14 * UIProcess/API/efl/EwkView.cpp: 15 (EwkView::EwkView): 16 1 17 2013-03-05 Kondapally Kalyan <kalyan.kondapally@intel.com> 2 18 -
trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp
r144585 r144892 281 281 WKPreferencesSetWebAudioEnabled(wkPreferences, true); 282 282 WKPreferencesSetOfflineWebApplicationCacheEnabled(wkPreferences, true); 283 #if ENABLE(SPELLCHECK) 284 WKPreferencesSetAsynchronousSpellCheckingEnabled(wkPreferences, true); 285 #endif 283 286 284 287 // Enable mouse events by default
Note:
See TracChangeset
for help on using the changeset viewer.