[Webkit-unassigned] [Bug 230678] New: Replace `axObject->isAXHidden() || axObject->isDOMHidden()` with `axObject->isHidden()`
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Sep 23 01:44:13 PDT 2021
https://bugs.webkit.org/show_bug.cgi?id=230678
Bug ID: 230678
Summary: Replace `axObject->isAXHidden() ||
axObject->isDOMHidden()` with `axObject->isHidden()`
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Web Inspector
Assignee: webkit-unassigned at lists.webkit.org
Reporter: ntim at apple.com
CC: inspector-bugzilla-changes at group.apple.com
Depends on: 84635, 229330
The definition of isHidden is:
bool isHidden() const override { return isAXHidden() || isDOMHidden(); }
So it's effectively the same thing. I'm doing this refactoring so I can factor in inert once I split it out from isAXHidden().
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=84635
[Bug 84635] Implement the dialog element
https://bugs.webkit.org/show_bug.cgi?id=229330
[Bug 229330] Implement hit testing bits of inert subtrees
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210923/29766737/attachment.htm>
More information about the webkit-unassigned
mailing list