mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 1207862 - make it possible to traverse down the tree of proxied documents r=davidb
This commit is contained in:
parent
90595fa0ae
commit
ec36e4fd98
@ -123,6 +123,10 @@ public:
|
||||
const ProxyAccessible* GetAccessible(uintptr_t aID) const
|
||||
{ return const_cast<DocAccessibleParent*>(this)->GetAccessible(aID); }
|
||||
|
||||
size_t ChildDocCount() const { return mChildDocs.Length(); }
|
||||
const DocAccessibleParent* ChildDocAt(size_t aIdx) const
|
||||
{ return mChildDocs[aIdx]; }
|
||||
|
||||
private:
|
||||
|
||||
class ProxyEntry : public PLDHashEntryHdr
|
||||
|
Loading…
Reference in New Issue
Block a user