Bug 227528
Summary: | [GTK] Support a11y with GTK 4 | ||
---|---|---|---|
Product: | WebKit | Reporter: | Michael Catanzaro <mcatanzaro> |
Component: | Accessibility | Assignee: | Diego Pino <dpino> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | alicem, bugs-noreply, cgarcia, dpino, mcatanzaro, sonny, webkit-bug-importer |
Priority: | P2 | Keywords: | InRadar |
Version: | WebKit Nightly Build | ||
Hardware: | PC | ||
OS: | Linux | ||
Bug Depends on: | |||
Bug Blocks: | 210100 |
Michael Catanzaro
Currently GTK 4 has no support for a11y. We should start by documenting what would be required to make this work.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/79966537>
Carlos Garcia Campos
What we currently have is a an a11y tree in the UI process built by GTK until WebKitWebView. The web view has is own accessible derived from AtkSocket. In the web process we have another a11y tree, coming from the DOM, so not associated to any GTK widget and it's built by WebKit using ATK API. The root of web process a11y tree is an AtkPlug. So, we use the ATK Socket/Plug API to connect the UI process tree with the web process one.
In GTK4 most of the a11y APIs are private, internally implemented by GtkWidgets, so our WebKitWebView has a GtkAtContext by default. We need a way to override the WebKitWebView a11y implementation, or at least some of the methods. For example GetChildren returns the references to the widgets that are children of WebKitWebView, but we need to include there the root object of the DOM a11y tree. Ideally, I think it should be enough if we could override GetChildren and GetChildAtIndex methods and ChildCount property somehow. Then we would need a way to get the WebKitWebView a11y object path, so that the root of DOM a11y tree can set the Parent property accordingly.
Michael Catanzaro
Is this fixed?
Carlos Garcia Campos
No, we still need a way to override the WebKitWebView a11y implementation. See comment #2
Michael Catanzaro
This depends on: https://gitlab.gnome.org/GNOME/gtk/-/issues/3597
Michael Catanzaro
Looks like https://gitlab.gnome.org/GNOME/gtk/-/issues/5162 will provide a path forward here.
Alice Mikhaylenko
https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/5470 is in now, so we should be able to have it. 🎉
Alice Mikhaylenko
Update: it doesn't seem to be enough for anything except entries. :(
Alice Mikhaylenko
Nevermind, should be fine.
Carlos Garcia Campos
It's not enough for our case that dom a11y tree is in a different process. See https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/5032#note_1638061
Sonny Piers
For information / the record
GNOME Foundation via STF¹ and Igalia are funding the work to solve this and Georges at Igalia is currently working on this.
¹ https://foundation.gnome.org/2023/11/09/gnome-recognized-as-public-interest-infrastructure/
Georges Basile Stavracas Neto
Pull request: https://github.com/WebKit/WebKit/pull/23926
EWS
Committed 274201@main (da96990ed73d): <https://commits.webkit.org/274201@main>
Reviewed commits have been landed. Closing PR #23926 and removing active labels.
Diego Pino
This patch broke the build for GTK-Linux-64-bit-Release-Ubuntu-LTS-Build.
https://build.webkit.org/#/builders/68/builds/31562
The build error is the following:
```
/home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:420:10: error: invalid use of incomplete type ‘GtkAccessibleInterface’
420 | iface->get_first_accessible_child = webkitWebViewBaseAccessibleGetFirstAccessibleChild;
| ^~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
from /usr/include/glib-2.0/gobject/gbinding.h:29,
from /usr/include/glib-2.0/glib-object.h:22,
from /usr/include/gtk-4.0/gtk/css/gtkcssenumtypes.h:11,
from /usr/include/gtk-4.0/gtk/css/gtkcss.h:34,
from /usr/include/gtk-4.0/gtk/gtk.h:30,
from /home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/WebKitBuild/GTK/Release/WebKitGTK/DerivedSources/webkit/WebKitWebViewBase.h:35,
from /home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:30:
/usr/include/gtk-4.0/gtk/gtkaccessible.h:36:1: note: forward declaration of ‘GtkAccessibleInterface’
36 | G_DECLARE_INTERFACE (GtkAccessible, gtk_accessible, GTK, ACCESSIBLE, GObject)
| ^~~~~~~~~~~~~~~~~~~
```
I took a look at the error and I think the problem is that `GtkAccessibleInterface` is not available in the GTK4 version used by the Ubuntu-LTS build bot (22.04):
```
$ apt-cache madison libgtk-4-dev
libgtk-4-dev | 4.6.9+ds-0ubuntu0.22.04.1 | http://mirrors.kernel.org/ubuntu jammy-updates/main amd64 Packages
libgtk-4-dev | 4.6.2+ds-1ubuntu2 | http://mirrors.kernel.org/ubuntu jammy/main amd64 Packages
```
**NOTE**: The Ubuntu and Debian build bots build with `--no-experimental-features` flag enabled and they do not use Flatpak SDK neither JHBuild. They build using only system libraries.
GtkAccessibleInterface is available since 4.10 (https://gitlab.gnome.org/GNOME/gtk/-/blob/main/gtk/gtkaccessible.h?ref_type=heads#L56).
Michael Catanzaro
This might work (untested, please check):
diff --git a/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp b/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp
index bbe3b935d788..0c1beb0a678a 100644
--- a/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp
+++ b/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp
@@ -304,7 +304,7 @@ struct _WebKitWebViewBasePrivate {
CString tooltipText;
IntRect tooltipArea;
WebHitTestResultData::IsScrollbar mouseIsOverScrollbar;
-#if USE(GTK4)
+#if USE(GTK4) && GTK_CHECK_VERSION(4, 10, 0)
#ifdef GTK_ACCESSIBILITY_ATSPI
GRefPtr<GtkAccessible> socketAccessible;
#endif
@@ -398,7 +398,7 @@ static void webkitWebViewBaseDidExitFullScreen(WebKitWebViewBase*);
static void webkitWebViewBaseRequestExitFullScreen(WebKitWebViewBase*);
#endif
-#if USE(GTK4)
+#if USE(GTK4) && GTK_CHECK_VERSION(4, 10, 0)
static GtkAccessible* webkitWebViewBaseAccessibleGetFirstAccessibleChild(GtkAccessible* accessible)
{
WebKitWebViewBase* webView = WEBKIT_WEB_VIEW_BASE(accessible);
@@ -3475,7 +3475,7 @@ void webkitWebViewBaseCallAfterNextPresentationUpdate(WebKitWebViewBase* webView
webkitWebViewBaseNextPresentationUpdateMonitorStart(webViewBase, WTFMove(callback));
}
-#if USE(GTK4)
+#if USE(GTK4) && GTK_CHECK_VERSION(4, 10, 0)
void webkitWebViewBaseSetPlugID(WebKitWebViewBase* webViewBase, const String& plugID)
{
#ifdef GTK_ACCESSIBILITY_ATSPI
Diego Pino
After applying the patch I got this other error:
/home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:312:13: error: ‘AtkObject’ was not declared in this scope; did you mean ‘GtkObject’?
312 | GRefPtr<AtkObject> accessible;
| ^~~~~~~~~
| GtkObject
/home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:312:22: error: template argument 1 is invalid
312 | GRefPtr<AtkObject> accessible;
| ^
/home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:387:13: warning: ‘void webkitWebViewBaseAccessibleInterfaceInit(GtkAccessibleInterface*)’ declared ‘static’ but never defined [-Wunused-function]
387 | static void webkitWebViewBaseAccessibleInterfaceInit(GtkAccessibleInterface*);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-LTS-Build/build/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:387:13: warning: ‘void webkitWebViewBaseAccessibleInterfaceInit(GtkAccessibleInterface*)’ used but never defined
Diego Pino
Pull request: https://github.com/webkit/webkit/pull/24020
Georges Basile Stavracas Neto
Pull request: https://github.com/WebKit/WebKit/pull/24066
EWS
Committed 274284@main (4aa6d217eac5): <https://commits.webkit.org/274284@main>
Reviewed commits have been landed. Closing PR #24066 and removing active labels.