WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
133043
AX: iOS: using AXAttributeCacheEnabler is too slow for every accessibilityElementAtIndex:
https://bugs.webkit.org/show_bug.cgi?id=133043
Summary
AX: iOS: using AXAttributeCacheEnabler is too slow for every accessibilityEle...
chris fleizach
Reported
2014-05-17 23:42:52 PDT
On iOS, the attribute cache enabler is being used on every access to elementAtIndex. Sample shows that we're spending a lot of time creating and tearing down these objects. I think we need to provide the ability to enable and disable caching at a higher, more informed level, so that we can cut down on these costs. <
rdar://problem/16945180
>
Attachments
patch
(2.97 KB, patch)
2014-05-17 23:52 PDT
,
chris fleizach
mario
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
chris fleizach
Comment 1
2014-05-17 23:52:28 PDT
Created
attachment 231650
[details]
patch
Anders Carlsson
Comment 2
2014-05-18 07:23:23 PDT
Comment on
attachment 231650
[details]
patch Who calls enableAttributeCaching and disableAttributeCaching, the OS?
chris fleizach
Comment 3
2014-05-18 07:48:10 PDT
(In reply to
comment #2
)
> (From update of
attachment 231650
[details]
) > Who calls enableAttributeCaching and disableAttributeCaching, the OS?
The accessibility framework that is on the app side knows when a list of elements is requested. That framework is able to start and stop the cache for us
Mario Sanchez Prada
Comment 4
2014-05-19 05:48:40 PDT
Comment on
attachment 231650
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=231650&action=review
> Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:346 > + m_object->axObjectCache()->startCachingComputedObjectAttributesUntilTreeMutates();
Perhaps you want to check whether axObjectCache() returns null here before using it?
> Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:351 > + m_object->axObjectCache()->stopCachingComputedObjectAttributes();
Same comment here
chris fleizach
Comment 5
2014-05-19 09:11:35 PDT
(In reply to
comment #4
)
> (From update of
attachment 231650
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=231650&action=review
> > > Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:346 > > + m_object->axObjectCache()->startCachingComputedObjectAttributesUntilTreeMutates(); > > Perhaps you want to check whether axObjectCache() returns null here before using it? > > > Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:351 > > + m_object->axObjectCache()->stopCachingComputedObjectAttributes(); > > Same comment here
Done. Thanks
http://trac.webkit.org/changeset/169047
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug