View | Details | Raw Unified | Return to bug 196754 | Differences between
and this patch

Collapse All | Expand All

(-)third_party/WebKit/Source/core/input/KeyboardEventManager.cpp (-1 / +2 lines)
Lines 424-430 Link Here
424
#elif OS(MACOSX)
424
#elif OS(MACOSX)
425
      return GetCurrentKeyModifiers() & alphaLock;
425
      return GetCurrentKeyModifiers() & alphaLock;
426
#else
426
#else
427
      NOTIMPLEMENTED();
427
      // Caps lock state use is limited to Mac password input
428
      // fields, so just return false. See http://crbug.com/618739.
428
      return false;
429
      return false;
429
#endif
430
#endif
430
    case OverrideCapsLockState::On:
431
    case OverrideCapsLockState::On:

Return to bug 196754