Changeset 249631 in webkit


Ignore:
Timestamp:
Sep 8, 2019 9:04:08 PM (5 years ago)
Author:
Wenson Hsieh
Message:

[macCatalyst] The last typed character in password fields shouldn't be echoed
https://bugs.webkit.org/show_bug.cgi?id=201595
<rdar://problem/55166367>

Reviewed by Tim Horton.

Disable password echoing on macCatalyst, to better match behavior on macOS.

  • Shared/WebPreferencesDefaultValues.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r249626 r249631  
     12019-09-08  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        [macCatalyst] The last typed character in password fields shouldn't be echoed
     4        https://bugs.webkit.org/show_bug.cgi?id=201595
     5        <rdar://problem/55166367>
     6
     7        Reviewed by Tim Horton.
     8
     9        Disable password echoing on macCatalyst, to better match behavior on macOS.
     10
     11        * Shared/WebPreferencesDefaultValues.h:
     12
    1132019-09-07  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h

    r249600 r249631  
    7272#define DEFAULT_JAVASCRIPT_CAN_OPEN_WINDOWS_AUTOMATICALLY false
    7373#define DEFAULT_SHOULD_RESPECT_IMAGE_ORIENTATION true
    74 #define DEFAULT_PASSWORD_ECHO_ENABLED true
    7574#define DEFAULT_ALLOWS_INLINE_MEDIA_PLAYBACK false
    7675#define DEFAULT_ALLOWS_INLINE_MEDIA_PLAYBACK_AFTER_FULLSCREEN true
     
    9392#define DEFAULT_JAVASCRIPT_CAN_OPEN_WINDOWS_AUTOMATICALLY true
    9493#define DEFAULT_SHOULD_RESPECT_IMAGE_ORIENTATION false
    95 #define DEFAULT_PASSWORD_ECHO_ENABLED false
    9694#define DEFAULT_ALLOWS_INLINE_MEDIA_PLAYBACK true
    9795#define DEFAULT_ALLOWS_INLINE_MEDIA_PLAYBACK_AFTER_FULLSCREEN false
     
    108106#endif
    109107
     108#if PLATFORM(IOS_FAMILY) && !PLATFORM(MACCATALYST)
     109#define DEFAULT_PASSWORD_ECHO_ENABLED true
     110#else
     111#define DEFAULT_PASSWORD_ECHO_ENABLED false
     112#endif
     113
    110114#if PLATFORM(COCOA)
    111115#define DEFAULT_ALLOW_MEDIA_CONTENT_TYPES_REQUIRING_HARDWARE_SUPPORT_AS_FALLBACK true
Note: See TracChangeset for help on using the changeset viewer.