[Webkit-unassigned] [Bug 174673] New: [WPE] Missing keyboard event information breaks fast/events/arrow-keys-on-body.html

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 20 07:08:20 PDT 2017


https://bugs.webkit.org/show_bug.cgi?id=174673

            Bug ID: 174673
           Summary: [WPE] Missing keyboard event information breaks
                    fast/events/arrow-keys-on-body.html
           Product: WebKit
           Version: WebKit Local Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebKit WPE
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: csaavedra at igalia.com
                CC: bugs-noreply at webkitgtk.org

fast/events/arrow-keys-on-body.html fails because key information is missing from the keyboard event created by WPE WebEventFactory.

-BODY - keydown - false,false,false,false - ArrowLeft - ArrowLeft - Left - DOM_KEY_LOCATION_STANDARD - 37 - 0 - 37 - 37
-BODY - keyup - false,false,false,false - ArrowLeft - ArrowLeft - Left - DOM_KEY_LOCATION_STANDARD - 37 - 0 - 37 - 37
+BODY - keydown - false,false,false,false - undefined - undefined - Left - DOM_KEY_LOCATION_STANDARD - 37 - 0 - 37 - 37
+BODY - keyup - false,false,false,false - undefined - undefined - Left - DOM_KEY_LOCATION_STANDARD - 37 - 0 - 37 - 37

The missing properties are event.key and event.code. This seems to be because we're using the default WebKeyboardEvent() constructor that doesn't fill in these properties as other ports do.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170720/9ed589e5/attachment.html>


More information about the webkit-unassigned mailing list