Closed
Bug 731276
Opened 13 years ago
Closed 13 years ago
remove CSS computed style getters from nsIAccessible
Categories
(Core :: Disability Access APIs, defect)
Core
Disability Access APIs
Tracking
()
RESOLVED
FIXED
mozilla13
People
(Reporter: surkov, Assigned: surkov)
References
Details
(Keywords: dev-doc-needed)
Attachments
(1 file)
|
8.97 KB,
patch
|
tbsaunde
:
review+
|
Details | Diff | Splinter Review |
No any reason to expose them to a script. Scripts should deal with with DOM stuffs instead.
Attachment #601302 -
Flags: review?(askalski)
| Assignee | ||
Comment 1•13 years ago
|
||
Andrzej, ping?
Updated•13 years ago
|
Attachment #601302 -
Flags: review?(askalski) → review?(trev.saunders)
Comment 2•13 years ago
|
||
Comment on attachment 601302 [details] [diff] [review]
patch
>diff --git a/accessible/public/nsIAccessible.idl b/accessible/public/nsIAccessible.idl
>--- a/accessible/public/nsIAccessible.idl
>+++ b/accessible/public/nsIAccessible.idl
>@@ -54,17 +54,17 @@ interface nsIAccessibleRelation;
> * accessibility APIs like MSAA and ATK. Contains the sum of what's needed
> * to support IAccessible as well as ATK's generic accessibility objects.
> * Can also be used by in-process accessibility clients to get information
> * about objects in the accessible tree. The accessible tree is a subset of
> * nodes in the DOM tree -- such as documents, focusable elements and text.
> * Mozilla creates the implementations of nsIAccessible on demand.
> * See http://www.mozilla.org/projects/ui/accessibility for more information.
> */
>-[scriptable, uuid(3126544c-826c-4694-a2ed-67bfe56a1f37)]
>+[scriptable, uuid(e7c44e0d-736e-4ead-afee-b51f4b574020)]
> interface nsIAccessible : nsISupports
> {
dev-doc-needed?
>
> nsRefPtr<nsAccessible> acc(do_QueryObject(this));
>- if (!acc)
>+ if (!acc || acc->IsDefunct())
> return E_FAIL;
if that qi fails something has gone horribly wrong, so I'm not sure you need the null check but I doubt it hurts.
Attachment #601302 -
Flags: review?(trev.saunders) → review+
| Assignee | ||
Comment 3•13 years ago
|
||
Keywords: dev-doc-needed
| Assignee | ||
Comment 4•13 years ago
|
||
https://developer.mozilla.org/en/nsIAccessNode and https://developer.mozilla.org/en/nsIAccessible should be updated (nsIAccessNode was removed, all methods were moved to nsIAccessible)
Comment 5•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla13
You need to log in
before you can comment on or make changes to this bug.
Description
•