mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1171995 - Part 2: Add IsTable, IsTableRow, IsTableCell to proxied accessibles r=tbsaunde
This commit is contained in:
parent
a2d20d8faa
commit
d6a5276590
@ -194,6 +194,12 @@ public:
|
||||
|
||||
bool IsLinkValid();
|
||||
|
||||
// XXX checking mRole alone may not result in same behavior as Accessibles
|
||||
// due to ARIA roles
|
||||
inline bool IsTable() const { return mRole == roles::TABLE; }
|
||||
inline bool IsTableRow() const { return mRole == roles::ROW; }
|
||||
inline bool IsTableCell() const { return mRole == roles::CELL; }
|
||||
|
||||
uint32_t AnchorCount(bool* aOk);
|
||||
|
||||
void AnchorURIAt(uint32_t aIndex, nsCString& aURI, bool* aOk);
|
||||
|
Loading…
Reference in New Issue
Block a user