17
edits
Line 28: | Line 28: | ||
== Firefox static HTML == | == Firefox static HTML == | ||
* getAccessibleAt(0, 0) returns the top-left cell, even if it is marked as a header in the HTML source. | |||
* getIndexAt(0,0) returns the child index under the table accessible of the top-left cell. Again, row and column headers are fetched using this method. | |||
* getColumnHeader(n) returns the accessible representing the one and only one header on the nth column. getRowHeader(n) returns nothing, at least when row headers are marked with <th>. '''Test multiple headers''' | |||
* getRowDescription(n), getColumnDescription(n) always return an empty string. | |||
* getRowExtentAt(r,c) and getColumnExtentAt(r,c) return the appropriate extent for all row and column offsets falling in the same cell. | |||
* Events do not apply to a static HTML table. |
edits