RESOLVED FIXED Bug 130314
Web Replay: capture and replay keyboard events
https://bugs.webkit.org/show_bug.cgi?id=130314
Summary Web Replay: capture and replay keyboard events
Blaze Burg
Reported 2014-03-16 14:15:58 PDT
Split this off from 129395
Attachments
the patch (18.05 KB, patch)
2014-03-21 20:36 PDT, Blaze Burg
joepeck: review+
Blaze Burg
Comment 1 2014-03-21 20:36:48 PDT
Created attachment 227530 [details] the patch
WebKit Commit Bot
Comment 2 2014-03-21 20:37:43 PDT
Attachment 227530 [details] did not pass style-queue: ERROR: Source/WebCore/replay/SerializationMethods.cpp:70: _key is incorrectly named. Don't use underscores in your identifier names. [readability/naming/underscores] [4] Total errors found: 1 in 8 files If any of these errors are false positives, please file a bug against check-webkit-style.
Joseph Pecoraro
Comment 3 2014-03-24 14:50:38 PDT
Comment on attachment 227530 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=227530&action=review r=me > Source/WebCore/replay/SerializationMethods.cpp:148 > + decodedValue = textWasDecoded ? KeypressCommand(commandName, text) : KeypressCommand(commandName); The origin os "textWasDecoded" is pretty cryptic, but I think its fine. > Source/WebCore/replay/SerializationMethods.cpp:154 > + PlatformKeyboardEventAppKit(const PlatformKeyboardEvent& event, bool handledByInputMethod, Vector<KeypressCommand> commands) Nit: Vector<>& commands
Blaze Burg
Comment 4 2014-03-24 16:09:58 PDT
Comment on attachment 227530 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=227530&action=review >> Source/WebCore/replay/SerializationMethods.cpp:148 >> + decodedValue = textWasDecoded ? KeypressCommand(commandName, text) : KeypressCommand(commandName); > > The origin os "textWasDecoded" is pretty cryptic, but I think its fine. Yeah.. not my favorite case. I decided to prepend the key name so that capitalization is consistent for single and multi-word keys. >> Source/WebCore/replay/SerializationMethods.cpp:154 >> + PlatformKeyboardEventAppKit(const PlatformKeyboardEvent& event, bool handledByInputMethod, Vector<KeypressCommand> commands) > > Nit: Vector<>& commands OK
Blaze Burg
Comment 5 2014-03-24 17:53:11 PDT
Note You need to log in before you can comment on or make changes to this bug.