Closed Bug 830748 Opened 12 years ago Closed 11 years ago

[AccessFu] Improve reading of table semantics

Categories

(Core :: Disability Access APIs, defect)

ARM
All
defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla25

People

(Reporter: MarcoZ, Assigned: yzen)

References

Details

Attachments

(2 files, 10 obsolete files)

15.88 KB, patch
eeejay
: review+
MarcoZ
: review+
Details | Diff | Splinter Review
22.53 KB, patch
eeejay
: review+
Details | Diff | Splinter Review
Attached patch Patch (obsolete) — Splinter Review
This bug introduces better reading of tables: 1. When entering a table, AccessFu speaks the row and column count, as well as any name deduced by our APIs from caption or @summary. 2. For each data cell, the row and column number are spoken, if the cell spans multiple rows or columns, and the row and column headers. It is intelligent so that, if the column changes, but the row doesn't, the row number and row header information are suppressed. Likewise if the column doesn't change, but the row does, column number and header are suppressed. 3. Layout tables are ignored.
Attachment #702289 - Flags: review?(eitan)
Comment on attachment 702289 [details] [diff] [review] Patch Adding davidb as discussed on IRC. Whoever gets to this first... ;-)
Attachment #702289 - Flags: review?(dbolter)
Comment on attachment 702289 [details] [diff] [review] Patch Review of attachment 702289 [details] [diff] [review]: ----------------------------------------------------------------- Great patch. The overall approach looks correct, except for the block below that might require some general reworking of some of our code. R minusing it for that reason. ::: accessible/src/jsat/UtteranceGenerator.jsm @@ +444,5 @@ > return utterance; > + }, > + > + _oldColumnIndex: -1, > + _oldRowIndex: -1 I am concerned about putting this here. The utterance module has been so far stateless. So if a user is navigating tables in two different tabs, this logic will trip up a bit. To fix that it would need to be associated with the pivot or document. The idea of storing the old index seems similar to what we do in PresenterContext when we have the old pivot position and subtract the lineage context from the current position before we send it to the utterance generator. I think that is where it belongs. Granted, the utterance API might need to change a bit to accommodate that. In the PresenterContext I see there being getters such as rowChanged and columnChanged that would return true or false by querying the old accessible and checking if it is a child of a different cell.
Attachment #702289 - Flags: review?(eitan) → review-
Comment on attachment 702289 [details] [diff] [review] Patch Thanks, Eitan! Cancelling review from David. Sigh, why do I always have to pick those bugs that are hard to implement? I have no idea yet where to start except for the one pointer you gave me. Esp the API expansion part I have no clue yet as to which approach I should take. May take a while.
Attachment #702289 - Flags: review?(dbolter)
OK, I have played around a bit, but haven't found a reliable way to track if a column and/or row have changed without using the table interface. For example, a row can have changed, but the column stayed the same, in which way we don't want to speak the column header again. Using parent/child relationships is no reliable or effective way to find this out. So, I have to use the nsIAccessibleTable interface in both the presenterContext as well as utteranceGenerator, as ugly as this sounds. :( In presenterContext, I have to query the new row and column indizes and compare against the old ones. In utteranceGenerator, I have to query this info again to actually speak the information. I am hesitant to pass around large information objects here that hold these values and such. Instead, I want to introduce a new set of flags that will be used on some accessibles to tell the individual generators to gather specific infos. The indicators whether these flags should be used will be true/false values passed to the generate function in utteranceGenerator. That's the current idea, but the patch is currently in an unpresentable state. Just storing the thoughts here, and if you have thoughts, please let me know!
Assignee: marco.zehe → yura.zenevich
Marco, would you be able to give some suggestions about table output in case of braille. Thanks in advance :).
Flags: needinfo?(marco.zehe)
For a start, I'd say this: RxCy row header|column header|cell content where x and y are of course the row and column headers. Unlike for speech, these should always be added, whereas as I wrote in the speech patch, it can be smarter when just changing columns or rows.
Flags: needinfo?(marco.zehe)
Attached patch Patch for 830748 (obsolete) — Splinter Review
This is a WIP. I just wanted to get some feedback on TableCell object and the way relevant old table cell accessible is looked up. Thanks!
Attachment #765208 - Flags: feedback?(marco.zehe)
Attachment #765208 - Flags: feedback?(eitan)
Comment on attachment 765208 [details] [diff] [review] Patch for 830748 Wow, nifty! As far as I can see, all that I was hoping for is in there. f=me.
Attachment #765208 - Flags: feedback?(marco.zehe) → feedback+
Attached patch Patch for 830748 v2 (obsolete) — Splinter Review
Still the same WIP, just some fixes and improvements added.
Attachment #765208 - Attachment is obsolete: true
Attachment #765208 - Flags: feedback?(eitan)
Attachment #765357 - Flags: feedback?(marco.zehe)
Attachment #765357 - Flags: feedback?(eitan)
Attachment #765357 - Flags: feedback?(marco.zehe) → feedback+
Comment on attachment 765357 [details] [diff] [review] Patch for 830748 v2 Review of attachment 765357 [details] [diff] [review]: ----------------------------------------------------------------- I am having a hard time understanding the TableCell object and how it is used. On a pivot change, we could have more than one cell in the newAncestry. I think it could be very simple. Here is some pseudo code: function cell(aAccessible, aRoleStr, aStates, aFlags, aContext) { function getCellIface(acc) { try { return acc.queryInterface(Ci.nsIAccessibleTableCell); catch (x) { return null; } } function getPreviousCell(accs, aTable) { for (let acc of accs) { let cell = getCellIface(acc); if (cell && cell.table == aTable) return cell; } return null; } let cellAcc = getCellIface(aAccessible); let previousCellAcc = getPreviousCell(aContext.oldAncestry, cellAcc.table); let newCol = previousCellAcc ? cellAcc.columnIndex != previousCellAcc.columnIndex : true; let newRow = previousCellAcc ? cellAcc.rowIndex != previousCellAcc.rowIndex : true; // Get extents, construct utterance, etc. } ::: accessible/src/jsat/OutputGenerator.jsm @@ +411,5 @@ > + // We don't want to speak any table information for layout tables. > + if (accessibleTable.isProbablyForLayout()) { > + return utterance; > + } > + utterance.push(gStringBundle.formatStringFromName('tableInfo', Is this already in AccessFu.properties? @@ +447,5 @@ > + return this.objectUtteranceFunctions.cell.apply(this, arguments); > + } > + }, > + > + _addCellChanged: function _addCellChangedUtterance(aUtterance, aChanged, aString, aIndex) { I could see why subroutines like _addExtent, _addChellChanged, and _addHeaders, are useful here. I would make the functions in the cell() function scope instead as private method members, since they are only used by cell. ::: accessible/src/jsat/Utils.jsm @@ +577,5 @@ > return this._traverse(this._accessible, aPreorder, aStop); > }, > > + getAccessibleTableCell: function getAccessibleTableCell(aAccessible) { > + if (!this._accessibleTableCell) { How can you cache _accessibleTableCell for any given argument in this function?
Attachment #765357 - Flags: feedback?(eitan)
(In reply to Eitan Isaacson [:eeejay] from comment #10) Yes, caching of _accessibleTableCell would be gone (an artifact I did not remove). AccessFu.properties is going to be updated with this patch as well. Yes my thinking was that I the TableCell object could be used to simplify access to some of the cell attributes. And yes it would not be cached, so more than one cell could be cached..
Attached patch Patch for 830748 v3 (obsolete) — Splinter Review
WIP with addressed comments.
Attachment #765357 - Attachment is obsolete: true
Attachment #765554 - Flags: feedback?(eitan)
Comment on attachment 702289 [details] [diff] [review] Patch Marking my old patch as obsolete since that's what it is.
Attachment #702289 - Attachment is obsolete: true
Attached patch Patch for 830748 v4 (obsolete) — Splinter Review
Attachment #765554 - Attachment is obsolete: true
Attachment #765554 - Flags: feedback?(eitan)
Attachment #766220 - Flags: feedback?(marco.zehe)
Attachment #766220 - Flags: feedback?(eitan)
Attached patch Tests for the patch v1 (obsolete) — Splinter Review
Attachment #766221 - Flags: feedback?(marco.zehe)
Attachment #766221 - Flags: feedback?(eitan)
I should be able to add braille shortly.
Comment on attachment 766221 [details] [diff] [review] Tests for the patch v1 f=me. The only thing I'm missing is a test for a layout table, e. g. that we do not get an utterance for a table that Firefox specifically recognizes as probably for layout. mochitest/tables should have some example tables that are definitely recognized as such. Please re-use that and make sure this situation is tested for.
Attachment #766221 - Flags: feedback?(marco.zehe) → feedback+
Comment on attachment 766220 [details] [diff] [review] Patch for 830748 v4 Is this patch ready to be tested? e. g. can I put it in my MQ and build locally with it to test?
(In reply to Marco Zehe (:MarcoZ) from comment #18) > Comment on attachment 766220 [details] [diff] [review] > Patch for 830748 v4 > > Is this patch ready to be tested? e. g. can I put it in my MQ and build > locally with it to test? Yes, I believe so.
Comment on attachment 766220 [details] [diff] [review] Patch for 830748 v4 I compiled locally with this build and like what I see. :)
Attachment #766220 - Flags: feedback?(marco.zehe) → feedback+
More comments about the braille output from Marco: http://krijnhoetmer.nl/irc-logs/accessibility/20130624#l-121
Comment on attachment 766220 [details] [diff] [review] Patch for 830748 v4 Review of attachment 766220 [details] [diff] [review]: ----------------------------------------------------------------- Overall this looks great. I'm concerned that maybe the re-implementation of newAncestry is not functionally identical. Big plus besides that (and other small issues). ::: accessible/src/jsat/Utils.jsm @@ +392,5 @@ > get newAncestry() { > if (!this._newAncestry) { > + this._newAncestry = [currentAncestor for ( > + [index, currentAncestor] of Iterator(this.currentAncestry)) if ( > + currentAncestor !== this.oldAncestry[index])]; This blows my mind! I don't think it is functionally identical to what it replaces. Previously, we would work backwards in both lists because that is how they would align (ie. old root equals new root, etc. until we encounter the first divergence). So the index you use here from the currentAncestry does not align with oldAncestry at all. I might be wrong, because this line is hard to read. Am I? @@ +439,5 @@ > }, > > + getCellInfo: function getCellInfo(aAccessible) { > + if (!this._cells) { > + this._cells = new Map(); I know I said on IRC that we don't need a WeakMap here because this is a short lived object. But maybe it is not a bad idea after all :P Using the accessible as a key in WeakMap won't work AFAIK because it does not support weak references afaik. So the key should be aAccessible.DOMNode. @@ +474,5 @@ > + > + cellInfo.current = getAccessibleCell(aAccessible); > + > + cellInfo.previous = null; > + let table = cellInfo.current.table; cellInfo.current could be null. Might be worth looging a warning, putting in a map entry with a value of null, and returning. ::: dom/locales/en-US/chrome/accessibility/AccessFu.properties @@ +83,5 @@ > +# Description of a table or grid: > +# 1 is a dynamically retrieved localized role of either 'table' or 'grid'. > +# 2 is the number of columns within the table. > +# 3 is the number of rows within the table or grid. > +tableInfo = %S with %S columns and %S rows You probably want to have plural rules here. https://developer.mozilla.org/en-US/docs/Localization_and_Plurals
Attachment #766220 - Flags: feedback?(eitan) → feedback+
Comment on attachment 766221 [details] [diff] [review] Tests for the patch v1 Review of attachment 766221 [details] [diff] [review]: ----------------------------------------------------------------- Overall good. Some surprising "expected" results. But I think that is an implementation issue. ::: accessible/tests/mochitest/jsat/test_tables.html @@ +42,5 @@ > + }, { > + // Test pivot to table1_th1 from table1. > + accOrElmOrID: "table1_th1", > + oldAccOrElmOrID: "table1", > + expected: ["table with 2 columns and 2 rows", "Column 1 Row 1", "col1"] I don't think the first element of the expected utterance should be there, same with the similar tests below.
Attachment #766221 - Flags: feedback?(eitan) → feedback+
Attached patch Patch for 830748 v5 (obsolete) — Splinter Review
I tested the old version of newAncestry, and in case where the pivot was from parent table to a cell in its subtree, the table was still announced.
Attachment #766220 - Attachment is obsolete: true
Attachment #767192 - Flags: review?(eitan)
Attached patch Tests for the patch v2 (obsolete) — Splinter Review
Attachment #766221 - Attachment is obsolete: true
Attachment #767193 - Flags: review?(marco.zehe)
Attachment #767193 - Flags: review?(eitan)
Comment on attachment 767193 [details] [diff] [review] Tests for the patch v2 Cancelling review. Still need to add layout test.
Attachment #767193 - Attachment is obsolete: true
Attachment #767193 - Flags: review?(marco.zehe)
Attachment #767193 - Flags: review?(eitan)
Attached patch Tests for the patch v3 (obsolete) — Splinter Review
Added the layout table test.
Attachment #767215 - Flags: review?(marco.zehe)
Attachment #767215 - Flags: review?(eitan)
Comment on attachment 767215 [details] [diff] [review] Tests for the patch v3 As I reviewed this test, I noticed that I had forgotten to give one additional piece of info. As soon as a layout table is encountered, all cell-related description info should be omitted. So the user should not be told that they're in a cell, just all the elements within the td should be treated as if they were in a layout element. There is a way to get to the parent table from a cell, it's within the NSIAccessibleTableCell interface, so it should be possible to just query that table accessible for the NSIAccessibleTable interface and get the info if it's a layout table, and if so, just utter the name but leave out all column, row, and other extra information pertaining to the cell itself. Sorryabout that, my bad that I forgot to mention this!
Attachment #767215 - Flags: review?(marco.zehe)
Attached patch Patch for 830748 v6 (obsolete) — Splinter Review
Attachment #767192 - Attachment is obsolete: true
Attachment #767192 - Flags: review?(eitan)
Attachment #767251 - Flags: review?(eitan)
Attachment #767215 - Attachment is obsolete: true
Attachment #767215 - Flags: review?(eitan)
Attachment #767252 - Flags: review?(marco.zehe)
Attachment #767252 - Flags: review?(eitan)
Attachment #767252 - Flags: review?(marco.zehe) → review+
Comment on attachment 767251 [details] [diff] [review] Patch for 830748 v6 Review of attachment 767251 [details] [diff] [review]: ----------------------------------------------------------------- Looking good!
Attachment #767251 - Flags: review?(eitan) → review+
Comment on attachment 767252 [details] [diff] [review] Tests for the patch v4 Review of attachment 767252 [details] [diff] [review]: ----------------------------------------------------------------- Great. Like we said on IRC, we need tests for description-last too. But that could come later.
Attachment #767252 - Flags: review?(eitan) → review+
Minor update to Accessfu.properties (tableColumnInfoAbbr and tableRowInfoAbbr) to eliminate PluralForm warning.
Attachment #767251 - Attachment is obsolete: true
Attachment #767600 - Flags: review?(eitan)
Comment on attachment 767600 [details] [diff] [review] Patch for 830748 v7 Review of attachment 767600 [details] [diff] [review]: ----------------------------------------------------------------- Looks great!
Attachment #767600 - Flags: review?(eitan) → review+
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla25
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: