[Webkit-unassigned] [Bug 142059] AX: Provide API for assistive tech to ignore DOM key event handlers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 12 22:13:45 PDT 2015


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

Beth Dakin <bdakin at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #248561|review?                     |review+
              Flags|                            |

--- Comment #19 from Beth Dakin <bdakin at apple.com> ---
Comment on attachment 248561
  --> https://bugs.webkit.org/attachment.cgi?id=248561
Updated to also stop propagation on key up

View in context: https://bugs.webkit.org/attachment.cgi?id=248561&action=review

> Source/WebCore/page/EventHandler.cpp:3252
> +    return false;

It looks like the EWS bot for EFL is failing because of the unused variable outside of the #if PLATFORM(COCOA). Build error:

../../Source/WebCore/page/EventHandler.cpp:3236:6: error: unused parameter 'event' [-Werror=unused-parameter]
 bool EventHandler::accessibilityPreventsEventPropogation(KeyboardEvent* event)

You can handle this with:

#else
UNUSED_PARAM(event);
#endif
return false;

-- 
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/20150313/a9050907/attachment-0002.html>


More information about the webkit-unassigned mailing list