https://bugs.documentfoundation.org/show_bug.cgi?id=122432

            Bug ID: 122432
           Summary: Accessible row headers not obtainable via AT-SPI2 for
                    Writer tables
           Product: LibreOffice
           Version: 6.0.6.2 release
          Hardware: All
                OS: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: medium
         Component: Writer
          Assignee: [email protected]
          Reporter: [email protected]

Description:
Using the Table Heading style for column headers results in those headers being
retrievable via the accessible table interface. Unfortunately, using that same
style for row headers does not render row headers accessible.

Impact: Orca does not present row headers automatically to the user.

Steps to Reproduce:
1. Open the attached test case in Writer
2. Launch Accerciser and select Table1-1 in its list of accessible objects
3. In Accerciser's iPython console type the following:

t = acc.queryTable()
t.getColumnDescription(1)
t.getColumnHeader(1).name
t.getRowDescription(1)
t.getRowHeader(1).name


Actual Results:
Results:
GOOD: t.getColumnHeader(1).name returns "B1"
GOOD: t.getColumnDescription(1) returns "Foo"
BAD: t.getRowDescription(1) returns "" (should be "A2")
BAD: t.getRowHeader(1).name results in an AttributeError because null is
returned (should be "Baz")

Expected Results:
(See above)


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to