WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
137819
[EFL] Introduce EFL Accessibility in WebKit
https://bugs.webkit.org/show_bug.cgi?id=137819
Summary
[EFL] Introduce EFL Accessibility in WebKit
Krzysztof Czech
Reported
2014-10-17 07:37:23 PDT
EFL Accessibility delivers set of APIs that are used to notify clients that specific actions occurs. In general notifications are sent through XWindow and each client (WebKit) is able to register itself on specific accessibility events and do some actions on accessibility tree.
Attachments
proposed patch
(18.94 KB, patch)
2014-10-17 08:16 PDT
,
Krzysztof Czech
no flags
Details
Formatted Diff
Diff
proposed patch
(17.52 KB, patch)
2014-10-17 08:21 PDT
,
Krzysztof Czech
gyuyoung.kim
: review-
Details
Formatted Diff
Diff
patch
(20.22 KB, patch)
2014-10-20 06:56 PDT
,
Krzysztof Czech
no flags
Details
Formatted Diff
Diff
patch
(20.22 KB, patch)
2014-10-20 06:57 PDT
,
Krzysztof Czech
gyuyoung.kim
: review+
Details
Formatted Diff
Diff
attempt to check bots
(20.30 KB, patch)
2014-10-22 07:47 PDT
,
Krzysztof Czech
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Krzysztof Czech
Comment 1
2014-10-17 08:16:19 PDT
Created
attachment 240014
[details]
proposed patch
Krzysztof Czech
Comment 2
2014-10-17 08:21:04 PDT
Created
attachment 240015
[details]
proposed patch
Krzysztof Czech
Comment 3
2014-10-17 08:25:05 PDT
This patch only stabs out required API and delivers event handler on specific accessibility notifications.
Chris Dumez
Comment 4
2014-10-17 10:34:01 PDT
Comment on
attachment 240015
[details]
proposed patch View in context:
https://bugs.webkit.org/attachment.cgi?id=240015&action=review
Just a couple of drive-by comments.
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:20 > + , m_eventHandler(0)
m_eventHandler(ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE, eventHandler, this)) ?
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:27 > + if (m_eventHandler)
Does this check ever fail? m_eventHandler is initialized in the constructor and never reset elsewhere.
Gyuyoung Kim
Comment 5
2014-10-20 04:53:21 PDT
Comment on
attachment 240015
[details]
proposed patch View in context:
https://bugs.webkit.org/attachment.cgi?id=240015&action=review
Basically this patch looks good. However I need to understand whole behavior new AX EFL APIs do. Let me take a look again. r- due to Chris and my comments.
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:1 > +#include "config.h"
Missing License.
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:36 > +
Please use #ifdef HAVE_ECORE_X macro for Ecore_X
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.h:1 > +#ifndef WebAccessibility_h
Missing License.
> Source/WebKit2/UIProcess/API/efl/ewk_view.h:1037 > +EAPI Eina_Bool ewk_view_accessibility_action_next_get(const Evas_Object* o);
Wrong * place.
> Source/WebKit2/UIProcess/API/efl/ewk_view.h:1046 > +EAPI Eina_Bool ewk_view_accessibility_action_prev_get(const Evas_Object* o);
ditto.
> Source/WebKit2/UIProcess/API/efl/ewk_view.h:1055 > +EAPI Eina_Bool ewk_view_accessibility_action_read_by_point_get(const Evas_Object* o);
ditto.
> Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_accessibility.cpp:1 > +#include "config.h"
Missing License.
Krzysztof Czech
Comment 6
2014-10-20 05:11:12 PDT
(In reply to
comment #4
)
> Comment on
attachment 240015
[details]
> proposed patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=240015&action=review
> > Just a couple of drive-by comments. > > > Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:20 > > + , m_eventHandler(0) > > m_eventHandler(ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE, > eventHandler, this)) ?
Yes, right
> > > Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:27 > > + if (m_eventHandler) > > Does this check ever fail? m_eventHandler is initialized in the constructor > and never reset elsewhere.
Does not suppose to fail. Thanks Chris.
Krzysztof Czech
Comment 7
2014-10-20 05:40:56 PDT
(In reply to
comment #5
)
> Comment on
attachment 240015
[details]
> proposed patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=240015&action=review
> > Basically this patch looks good. However I need to understand whole behavior > new AX EFL APIs do. Let me take a look again. r- due to Chris and my > comments. >
Let me put some light on this. Basically the simplest test case could look as follows. Take into account accessibility is rather for someone with disabilities to help utilize an application in terms of proper navigation through UI interface, but this is not a rule. For example we have a Browser and additional application that is able to read gestures or do some navigation. Now comes the EFL and accessibility API. Whenever there is a need to notify clients about some specific action that has just happened for example (go to the next element on a web page or next element in UI) ecore_x_e_illume_access_action_..... is sent. All the clients that now how to interpret it, do this in its own context.
Krzysztof Czech
Comment 8
2014-10-20 05:48:06 PDT
> > Basically this patch looks good. However I need to understand whole behavior > > new AX EFL APIs do. Let me take a look again. r- due to Chris and my > > comments. > > > Let me put some light on this. Basically the simplest test case could look > as follows. Take into account accessibility is rather for someone with > disabilities to help utilize an application in terms of proper navigation > through UI interface, but this is not a rule. For example we have a Browser > and additional application that is able to read gestures or do some > navigation. Now comes the EFL and accessibility API. Whenever there is a > need to notify clients about some specific action that has just happened for > example (go to the next element on a web page or next element in UI) > ecore_x_e_illume_access_action_..... is sent. All the clients that now how > to interpret it, do this in its own context.
I provided a test case test_ewk2_accessibility and you can think of it as such an application that is able to recognize gestures or do some navigation.
Krzysztof Czech
Comment 9
2014-10-20 06:56:12 PDT
Created
attachment 240117
[details]
patch
Krzysztof Czech
Comment 10
2014-10-20 06:57:57 PDT
Created
attachment 240118
[details]
patch
Gyuyoung Kim
Comment 11
2014-10-20 16:22:59 PDT
Comment on
attachment 240118
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=240118&action=review
> Source/WebKit2/ChangeLog:48 > + (WebKit::WebPageProxy::accessibilityObjectReadByPoint):
I think you need to explain why you add these functions.
> Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:109 > +{
notImplemented() ?
> Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_accessibility.cpp:49 > + ASSERT_TRUE(ewk_view_accessibility_action_read_by_point_get(webView()));
I wonder how ewk_view_accessibility_action_read_by_point_get() can be true. Because eventually this function will return m_readAction. However m_readAction can be true by accessibilityObjectReadByPoint() though, accessibilityObjectReadByPoint() isn't implemented. Other functions looks same. m_readAction = m_ewkView->page()->accessibilityObjectReadByPoint(WebCore::IntPoint(m_currentPoint.x(), m_currentPoint.y()));
> Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp:145 > +bool WebPageProxy::accessibilityObjectReadByPoint(const WebCore::IntPoint& point)
*point* argument will cause unused param build warning.
Krzysztof Czech
Comment 12
2014-10-21 01:29:42 PDT
(In reply to
comment #11
)
> Comment on
attachment 240118
[details]
> patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=240118&action=review
> > > Source/WebKit2/ChangeLog:48 > > + (WebKit::WebPageProxy::accessibilityObjectReadByPoint): > > I think you need to explain why you add these functions.
Well it's not a final patch. These are only required empty stubs that will form a whole functionality. Basically those functions are needed to have a connection with WebProcess. WebProcess part it not ready yet. I wanted to split it into two parts or three parts.
> > > Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:109 > > +{ > > notImplemented() ? > > > Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_accessibility.cpp:49 > > + ASSERT_TRUE(ewk_view_accessibility_action_read_by_point_get(webView())); > > I wonder how ewk_view_accessibility_action_read_by_point_get() can be true. > Because eventually this function will return m_readAction. However > m_readAction can be true by accessibilityObjectReadByPoint() though, > accessibilityObjectReadByPoint() isn't implemented. Other functions looks > same. >
It will be failing until I make a WebProcess part.
> m_readAction = > m_ewkView->page()->accessibilityObjectReadByPoint(WebCore:: > IntPoint(m_currentPoint.x(), m_currentPoint.y())); > > > Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp:145 > > +bool WebPageProxy::accessibilityObjectReadByPoint(const WebCore::IntPoint& point) > > *point* argument will cause unused param build warning.
Krzysztof Czech
Comment 13
2014-10-21 03:42:22 PDT
> > I wonder how ewk_view_accessibility_action_read_by_point_get() can be true. > > Because eventually this function will return m_readAction. However > > m_readAction can be true by accessibilityObjectReadByPoint() though, > > accessibilityObjectReadByPoint() isn't implemented. Other functions looks > > same. > > > It will be failing until I make a WebProcess part.
To be more clear. WebProcess part will be doing navigation across Accessibility Tree. Basically this means when ECORE_X_ATOM_E_ILLUME_ACCESS_ACTION_READ_NEXT happens we'll focus next element. What may be the result of focusing next element. Well, screen reader may read its content/description/role/name to the user. Ewk API will be getting a status whether for example focusing next element is properly done and test_ewk2_accessibility will be testing it. I already mentioned test_ewk2_accessibility triggering ecore_x_e_illume_... actions and read results. In real scenario screen reader is a target that should be able to speak aloud results (content/description/name) or do something with a role.
Gyuyoung Kim
Comment 14
2014-10-21 16:59:03 PDT
(In reply to
comment #12
)
> (In reply to
comment #11
) > > Comment on
attachment 240118
[details]
> > patch > > > > View in context: > >
https://bugs.webkit.org/attachment.cgi?id=240118&action=review
> > > > > Source/WebKit2/ChangeLog:48 > > > + (WebKit::WebPageProxy::accessibilityObjectReadByPoint): > > > > I think you need to explain why you add these functions. > Well it's not a final patch. These are only required empty stubs that will > form a whole functionality. Basically those functions are needed to have a > connection with WebProcess. WebProcess part it not ready yet. I wanted to > split it into two parts or three parts.
Aha, I missed test_ewk2_accessibility isn't included in API test execution list.
> > > Source/WebKit2/UIProcess/API/efl/WebAccessibility.cpp:109 > > > +{ > > > > notImplemented() ? > > > > > Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_accessibility.cpp:49 > > > + ASSERT_TRUE(ewk_view_accessibility_action_read_by_point_get(webView())); > > > > I wonder how ewk_view_accessibility_action_read_by_point_get() can be true. > > Because eventually this function will return m_readAction. However > > m_readAction can be true by accessibilityObjectReadByPoint() though, > > accessibilityObjectReadByPoint() isn't implemented. Other functions looks > > same. > > > It will be failing until I make a WebProcess part. > > m_readAction = > > m_ewkView->page()->accessibilityObjectReadByPoint(WebCore:: > > IntPoint(m_currentPoint.x(), m_currentPoint.y())); > > > > > Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp:145 > > > +bool WebPageProxy::accessibilityObjectReadByPoint(const WebCore::IntPoint& point) > > > > *point* argument will cause unused param build warning.
Gyuyoung Kim
Comment 15
2014-10-21 17:00:04 PDT
Comment on
attachment 240118
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=240118&action=review
LGTM.
>>> Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp:145 >>> +bool WebPageProxy::accessibilityObjectReadByPoint(const WebCore::IntPoint& point) >> >> *point* argument will cause unused param build warning. > >
Please land after removing "point" argument.
Krzysztof Czech
Comment 16
2014-10-22 07:47:04 PDT
Created
attachment 240273
[details]
attempt to check bots
Krzysztof Czech
Comment 17
2014-10-23 00:24:17 PDT
Comment on
attachment 240273
[details]
attempt to check bots Ready to land
WebKit Commit Bot
Comment 18
2014-10-23 01:02:40 PDT
Comment on
attachment 240273
[details]
attempt to check bots Clearing flags on attachment: 240273 Committed
r175098
: <
http://trac.webkit.org/changeset/175098
>
WebKit Commit Bot
Comment 19
2014-10-23 01:03:03 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug