⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 283487 in webkit


Ignore:
Timestamp:
Oct 3, 2021, 10:37:08 PM (5 years ago)
Author:
Lauro Moura
Message:

[GTK] REGRESSION(r283304): All GTK4 layout tests are aborting
https://bugs.webkit.org/show_bug.cgi?id=231153

Reviewed by Alexey Proskuryakov.

Revert back to the previous NOP behavior of bindAccessibilityTree()
for GTK4, leaving the assert for the debug mode with an informative
message in the log.

Covered by existing tests.

  • UIProcess/gtk/WebPageProxyGtk.cpp:

(WebKit::WebPageProxy::bindAccessibilityTree):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r283482 r283487  
     12021-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
    1172021-10-03  Don Olmstead  <don.olmstead@sony.com>
    218
  • trunk/Source/WebKit/UIProcess/gtk/WebPageProxyGtk.cpp

    r283304 r283487  
    5454#if USE(GTK4)
    5555    // 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();
    5757#else
    5858    auto* accessible = gtk_widget_get_accessible(viewWidget());
Note: See TracChangeset for help on using the changeset viewer.