WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
42131
WebKitTestRunner needs to support accessibility-related DRT APIs
https://bugs.webkit.org/show_bug.cgi?id=42131
Summary
WebKitTestRunner needs to support accessibility-related DRT APIs
Maciej Stachowiak
Reported
2010-07-12 19:47:54 PDT
WebKitTestRunner needs to support accessibility-related DRT APIs
Attachments
patch
(177.07 KB, patch)
2011-11-01 10:46 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(177.08 KB, patch)
2011-11-01 10:53 PDT
,
chris fleizach
darin
: review-
gustavo
: commit-queue-
Details
Formatted Diff
Diff
patch
(176.48 KB, patch)
2011-11-02 12:13 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(176.66 KB, patch)
2011-11-02 18:34 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(176.83 KB, patch)
2011-11-03 08:40 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(176.81 KB, patch)
2011-11-03 09:50 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(184.13 KB, patch)
2011-11-03 10:25 PDT
,
chris fleizach
no flags
Details
Formatted Diff
Diff
patch
(184.13 KB, patch)
2011-11-03 11:00 PDT
,
chris fleizach
bdakin
: review+
Details
Formatted Diff
Diff
Show Obsolete
(7)
View All
Add attachment
proposed patch, testcase, etc.
Maciej Stachowiak
Comment 1
2010-07-12 19:49:27 PDT
<
rdar://problem/8183711
>
chris fleizach
Comment 2
2011-11-01 10:46:50 PDT
Created
attachment 113192
[details]
patch
chris fleizach
Comment 3
2011-11-01 10:53:10 PDT
Created
attachment 113195
[details]
patch
WebKit Review Bot
Comment 4
2011-11-01 10:57:20 PDT
Attachment 113195
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'LayoutTests/ChangeLog', u'LayoutTests/acce..." exit_code: 1 Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:27: You should add a blank line after implementation file's own header. [build/include_order] [4] Total errors found: 1 in 46 files If any of these errors are false positives, please file a bug against check-webkit-style.
Gustavo Noronha (kov)
Comment 5
2011-11-01 11:18:17 PDT
Comment on
attachment 113195
[details]
patch
Attachment 113195
[details]
did not pass gtk-ews (gtk): Output:
http://queues.webkit.org/results/10148012
Darin Adler
Comment 6
2011-11-01 15:55:08 PDT
Comment on
attachment 113195
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=113195&action=review
> Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapper.mm:-499 > - ASSERT(!value.isEmpty()); > -
You can’t just remove this assert. The call to get below won’t work right with certain values (either null strings or empty strings, I can’t recall which) because of how hash tables work. If you need to allow these strings, then you need to add an explicit early return, not fall through to the hash table code.
> Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:71 > +WK_EXPORT void* WKAccessibilityRootObject(WKBundlePageRef); > +WK_EXPORT void* WKAccessibilityFocusedObject(WKBundlePageRef);
Does this really need to be void*?
chris fleizach
Comment 7
2011-11-02 09:35:35 PDT
(In reply to
comment #6
)
> (From update of
attachment 113195
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=113195&action=review
> > > Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapper.mm:-499 > > - ASSERT(!value.isEmpty()); > > - >
> You can’t just remove this assert. The call to get below won’t work right with certain values (either null strings or empty strings, I can’t recall which) because of how hash tables work. If you need to allow these strings, then you need to add an explicit early return, not fall through to the hash table code. >
Will add an early return. This method needs to handle any kind of string that it gets and if it doesn't match, return the "AnyType" of element search criteria
> > Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:71 > > +WK_EXPORT void* WKAccessibilityRootObject(WKBundlePageRef); > > +WK_EXPORT void* WKAccessibilityFocusedObject(WKBundlePageRef); > > Does this really need to be void*?
They return the "id" type naturally. Should I make a new opaque type to wrap that?
chris fleizach
Comment 8
2011-11-02 12:13:12 PDT
Created
attachment 113348
[details]
patch
chris fleizach
Comment 9
2011-11-02 18:34:10 PDT
Created
attachment 113414
[details]
patch
chris fleizach
Comment 10
2011-11-03 08:40:00 PDT
Created
attachment 113497
[details]
patch
chris fleizach
Comment 11
2011-11-03 09:50:27 PDT
Created
attachment 113509
[details]
patch
chris fleizach
Comment 12
2011-11-03 10:25:30 PDT
Created
attachment 113518
[details]
patch
chris fleizach
Comment 13
2011-11-03 11:00:49 PDT
Created
attachment 113524
[details]
patch
Mario Sanchez Prada
Comment 14
2011-11-15 02:55:15 PST
Comment on
attachment 113524
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=113524&action=review
Informal review, hope you find it helpful. See my comments below
> Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:146 > + WebCore::AXObjectCache::enableAccessibility();
It probably doesn't matter much, but shouldn't we use the typical "if (!AXObjectCache::accessibilityEnabled())" check before calling to enableAccessibility(), for consistency with other places in the code? (e.g. see accessibilityRoot() in WebKit/mac/WebView/WebFrame.mm, or accessibilityAttributeValue() in WebKit2/WebProcess/WebPage/mac/WKAccessibilityWebPageObject.mm)
> Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:164 > + WebCore::AXObjectCache::enableAccessibility();
Same here.
> Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:53 > + return m_element;
I think it could be better to do something like return m_element ? true : false; here so we always return something of bool type, since m_element is a PlatformUIElement
> Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:56 > +// Unsupported methods on various platforms. As their implemented on other platforms this list should be modified.
"their" -> "they're" ?
> Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h:47 > + // Controller Methods - platform-independent implementations
Missing '.' at the end of the comment. There are some more of these in the patch (e.g. AccessibilityUIElement.h), so won't comment on the rest (don't want to flood with this trivial things).
chris fleizach
Comment 15
2011-11-16 09:09:26 PST
(In reply to
comment #14
)
> (From update of
attachment 113524
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=113524&action=review
> > Informal review, hope you find it helpful. See my comments below > > > Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:146 > > + WebCore::AXObjectCache::enableAccessibility(); > > It probably doesn't matter much, but shouldn't we use the typical "if (!AXObjectCache::accessibilityEnabled())" check before calling to enableAccessibility(), for consistency with other places in the code? (e.g. see accessibilityRoot() in WebKit/mac/WebView/WebFrame.mm, or accessibilityAttributeValue() in WebKit2/WebProcess/WebPage/mac/WKAccessibilityWebPageObject.mm) >
Yea those are there unnecessarily. They did not come from this patch, so I left them alone
> > Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:164 > > + WebCore::AXObjectCache::enableAccessibility(); > > Same here.
This one is likely needed because the entry point to accessibility from DRT through WK2 will be through this method. If ax is not on, then the ax object cache will not be created and nothing will work
> > > Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:53 > > + return m_element; > > I think it could be better to do something like return m_element ? true : false; here so we always return something of bool type, since m_element is a PlatformUIElement >
PlatformUIElement is not a ref pointer, so i think this is preferred style.
> > Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:56 > > +// Unsupported methods on various platforms. As their implemented on other platforms this list should be modified. > > "their" -> "they're" ? >
thanks
> > Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h:47 > > + // Controller Methods - platform-independent implementations > > Missing '.' at the end of the comment. There are some more of these in the patch (e.g. AccessibilityUIElement.h), so won't comment on the rest (don't want to flood with this trivial things).
Thanks
chris fleizach
Comment 16
2011-11-16 09:14:27 PST
> > > > > Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:53 > > > + return m_element; > > > > I think it could be better to do something like return m_element ? true : false; here so we always return something of bool type, since m_element is a PlatformUIElement > > > > PlatformUIElement is not a ref pointer, so i think this is preferred style. >
I don't see anything in style guide about this, so I don't know what's preferred. However I see this in RenderObject.h virtual bool canHaveChildren() const { return virtualChildren(); } where virtualChildren is a pointer
Mario Sanchez Prada
Comment 17
2011-11-16 09:49:52 PST
(In reply to
comment #16
)
> [...] > I don't see anything in style guide about this, so I don't know what's preferred. However I see this in RenderObject.h > > virtual bool canHaveChildren() const { return virtualChildren(); } > > where virtualChildren is a pointer
Ok, perhaps it's me that I'm used to that from other projects (so many coding styles that sometimes it's hard to remember which one is the right one). Glad to see my comments were somehow useful, anyway :)
chris fleizach
Comment 18
2011-11-16 12:15:33 PST
Part1
http://trac.webkit.org/changeset/100487
chris fleizach
Comment 19
2011-11-16 12:18:00 PST
and final part
http://trac.webkit.org/changeset/100488
chris fleizach
Comment 20
2011-11-16 12:30:41 PST
looks like this is causing some trouble on GTK... looking into it GEN DerivedSources/InjectedBundle/JSAccessibilityTextMarkerRange.cpp <command-line>:0:1: error: macro names must be identifiers <command-line>:0:1: error: macro names must be identifiers <command-line>:0:1: error: macro names must be identifiers
chris fleizach
Comment 21
2011-11-16 12:33:07 PST
(In reply to
comment #20
)
> looks like this is causing some trouble on GTK... > > looking into it > > > GEN DerivedSources/InjectedBundle/JSAccessibilityTextMarkerRange.cpp > <command-line>:0:1: error: macro names must be identifiers > <command-line>:0:1: error: macro names must be identifiers > <command-line>:0:1: error: macro names must be identifiers
Or maybe not. looks like GTK has been failing for a while
chris fleizach
Comment 22
2011-11-16 15:59:08 PST
It looks like the release build of WebKitTestRunner is failing on something to do with this patch...
chris fleizach
Comment 23
2011-11-16 16:08:48 PST
(In reply to
comment #22
)
> It looks like the release build of WebKitTestRunner is failing on something to do with this patch...
However, I can build release just fine on my machine. Unfortunately the new run-webkit-tests does not output what happens when "check build" fails
Adam Roben (:aroben)
Comment 24
2011-11-29 08:25:40 PST
This may have caused
bug 73326
.
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