Changeset 189366 in webkit
- Timestamp:
- Sep 4, 2015, 11:58:22 AM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r189365 r189366 1 2015-09-04 Dan Bernstein <mitz@apple.com> 2 3 [iOS] Disable backspace key navigation by default 4 https://bugs.webkit.org/show_bug.cgi?id=148808 5 6 Reviewed by Tim Horton. 7 8 * Shared/WebPreferencesDefinitions.h: Defined DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED as 9 false on iOS, true elsewhere, and made it the default value of the 10 backspaceKeyNavigationEnabled preference key. 11 1 12 2015-09-04 Beth Dakin <bdakin@apple.com> 2 13 -
trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h
r189129 r189366 50 50 51 51 #if PLATFORM(IOS) 52 #define DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED false 52 53 #define DEFAULT_FRAME_FLATTENING_ENABLED true 53 54 #define DEFAULT_SHOULD_PRINT_BACKGROUNDS true … … 64 65 #define DEFAULT_TEMPORARY_TILE_COHORT_RETENTION_ENABLED false 65 66 #else 67 #define DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED true 66 68 #define DEFAULT_FRAME_FLATTENING_ENABLED false 67 69 #define DEFAULT_SHOULD_PRINT_BACKGROUNDS false … … 147 149 macro(WebAudioEnabled, webAudioEnabled, Bool, bool, true) \ 148 150 macro(SuppressesIncrementalRendering, suppressesIncrementalRendering, Bool, bool, false) \ 149 macro(BackspaceKeyNavigationEnabled, backspaceKeyNavigationEnabled, Bool, bool, true) \151 macro(BackspaceKeyNavigationEnabled, backspaceKeyNavigationEnabled, Bool, bool, DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED) \ 150 152 macro(CaretBrowsingEnabled, caretBrowsingEnabled, Bool, bool, false) \ 151 153 macro(ShouldDisplaySubtitles, shouldDisplaySubtitles, Bool, bool, false) \
Note:
See TracChangeset
for help on using the changeset viewer.