Bug 241022

Summary: AX: inert attribute doesn't cause display:contents element to be ignored
Product: WebKit Reporter: Tyler Wilcock <tyler_w>
Component: AccessibilityAssignee: Tyler Wilcock <tyler_w>
Status: RESOLVED FIXED    
Severity: Normal CC: aboxhall, andresg_22, apinheiro, cfleizach, dmazzoni, ews-watchlist, jcraig, jdiggs, ntim, samuel_white, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 165279    
Attachments:
Description Flags
Patch
none
Patch
none
Patch
none
Patch none

Tyler Wilcock
Reported 2022-05-27 08:32:47 PDT
AX: inert attribute doesn't cause display:contents element to be ignored
Attachments
Patch (7.39 KB, patch)
2022-05-27 08:40 PDT, Tyler Wilcock
no flags
Patch (7.37 KB, patch)
2022-05-31 15:42 PDT, Tyler Wilcock
no flags
Patch (8.25 KB, patch)
2022-05-31 17:28 PDT, Tyler Wilcock
no flags
Patch (8.25 KB, patch)
2022-05-31 17:37 PDT, Tyler Wilcock
no flags
Radar WebKit Bug Importer
Comment 1 2022-05-27 08:32:56 PDT
Tyler Wilcock
Comment 2 2022-05-27 08:40:27 PDT
Tyler Wilcock
Comment 3 2022-05-31 15:42:10 PDT
Andres Gonzalez
Comment 4 2022-05-31 17:26:52 PDT
(In reply to Tyler Wilcock from comment #3) > Created attachment 459914 [details] > Patch --- a/Source/WebCore/accessibility/AccessibilityObject.cpp +++ a/Source/WebCore/accessibility/AccessibilityObject.cpp +const RenderStyle* AccessibilityObject::style() const Doesn't this belong to the AXNodeObject since it requires an underlying element? I.e., AccessibilityObject::style should always return nullptr, and AccessibilityNodeObject::style should be this implementation? --- a/LayoutTests/accessibility/node-only-inert-object.html +++ a/LayoutTests/accessibility/node-only-inert-object.html + await waitFor(() => accessibilityController.accessibleElementById("button") ); Is the space before the last ) needed?
Tyler Wilcock
Comment 5 2022-05-31 17:28:07 PDT
Tyler Wilcock
Comment 6 2022-05-31 17:37:05 PDT
(In reply to Andres Gonzalez from comment #4) > (In reply to Tyler Wilcock from comment #3) > > Created attachment 459914 [details] > > Patch > > --- a/Source/WebCore/accessibility/AccessibilityObject.cpp > +++ a/Source/WebCore/accessibility/AccessibilityObject.cpp > > +const RenderStyle* AccessibilityObject::style() const > > Doesn't this belong to the AXNodeObject since it requires an underlying > element? I.e., AccessibilityObject::style should always return nullptr, and > AccessibilityNodeObject::style should be this implementation? I don't think so, since it uses AccessibilityObject::element() to get the style. Non AXNodeObjects can and do provide a node() / element() / style(). For example, AccessibilityListBoxOption is not an AXNodeObject but provides a node(). Another theoretical example: AccessibilityScrollView isn't a node object, but could provide a node() / element() through AccessibilityScrollView::m_frameOwnerElement. So I think letting different AccessibilityObject subclasses provide node() / element() / style() however they can is OK. > --- a/LayoutTests/accessibility/node-only-inert-object.html > +++ a/LayoutTests/accessibility/node-only-inert-object.html > > + await waitFor(() => > accessibilityController.accessibleElementById("button") ); > > Is the space before the last ) needed? It isn't — fixed.
Tyler Wilcock
Comment 7 2022-05-31 17:37:59 PDT
EWS
Comment 8 2022-06-01 09:20:57 PDT
Committed r295090 (251185@main): <https://commits.webkit.org/251185@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 459916 [details].
Note You need to log in before you can comment on or make changes to this bug.