Changeset 283487 in webkit
- Timestamp:
- Oct 3, 2021, 10:37:08 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/gtk/WebPageProxyGtk.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r283482 r283487 1 2021-10-03 Lauro Moura <lmoura@igalia.com> 2 3 [GTK] REGRESSION(r283304): All GTK4 layout tests are aborting 4 https://bugs.webkit.org/show_bug.cgi?id=231153 5 6 Reviewed by Alexey Proskuryakov. 7 8 Revert back to the previous NOP behavior of bindAccessibilityTree() 9 for GTK4, leaving the assert for the debug mode with an informative 10 message in the log. 11 12 Covered by existing tests. 13 14 * UIProcess/gtk/WebPageProxyGtk.cpp: 15 (WebKit::WebPageProxy::bindAccessibilityTree): 16 1 17 2021-10-03 Don Olmstead <don.olmstead@sony.com> 2 18 -
trunk/Source/WebKit/UIProcess/gtk/WebPageProxyGtk.cpp
r283304 r283487 54 54 #if USE(GTK4) 55 55 // FIXME: We need a way to override accessible interface of WebView and send the atspi reference to the web process. 56 RELEASE_ASSERT_NOT_REACHED();56 ASSERT_NOT_IMPLEMENTED_YET(); 57 57 #else 58 58 auto* accessible = gtk_widget_get_accessible(viewWidget());
Note:
See TracChangeset
for help on using the changeset viewer.