Changeset 189366 in webkit


Ignore:
Timestamp:
Sep 4, 2015 11:58:22 AM (9 years ago)
Author:
mitz@apple.com
Message:

[iOS] Disable backspace key navigation by default
https://bugs.webkit.org/show_bug.cgi?id=148808

Reviewed by Tim Horton.

  • Shared/WebPreferencesDefinitions.h: Defined DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED as false on iOS, true elsewhere, and made it the default value of the backspaceKeyNavigationEnabled preference key.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r189365 r189366  
     12015-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
    1122015-09-04  Beth Dakin  <bdakin@apple.com>
    213
  • trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h

    r189129 r189366  
    5050
    5151#if PLATFORM(IOS)
     52#define DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED false
    5253#define DEFAULT_FRAME_FLATTENING_ENABLED true
    5354#define DEFAULT_SHOULD_PRINT_BACKGROUNDS true
     
    6465#define DEFAULT_TEMPORARY_TILE_COHORT_RETENTION_ENABLED false
    6566#else
     67#define DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED true
    6668#define DEFAULT_FRAME_FLATTENING_ENABLED false
    6769#define DEFAULT_SHOULD_PRINT_BACKGROUNDS false
     
    147149    macro(WebAudioEnabled, webAudioEnabled, Bool, bool, true) \
    148150    macro(SuppressesIncrementalRendering, suppressesIncrementalRendering, Bool, bool, false) \
    149     macro(BackspaceKeyNavigationEnabled, backspaceKeyNavigationEnabled, Bool, bool, true) \
     151    macro(BackspaceKeyNavigationEnabled, backspaceKeyNavigationEnabled, Bool, bool, DEFAULT_BACKSPACE_KEY_NAVIGATION_ENABLED) \
    150152    macro(CaretBrowsingEnabled, caretBrowsingEnabled, Bool, bool, false) \
    151153    macro(ShouldDisplaySubtitles, shouldDisplaySubtitles, Bool, bool, false) \
Note: See TracChangeset for help on using the changeset viewer.