| Index: content/renderer/accessibility/blink_ax_tree_source.cc
|
| diff --git a/content/renderer/accessibility/blink_ax_tree_source.cc b/content/renderer/accessibility/blink_ax_tree_source.cc
|
| index 44616e55bd6aceeb160d9c1b767557c80aba2527..2e0b50a8e2ce0b15daeb2fbda04404d403cd3af5 100644
|
| --- a/content/renderer/accessibility/blink_ax_tree_source.cc
|
| +++ b/content/renderer/accessibility/blink_ax_tree_source.cc
|
| @@ -545,6 +545,12 @@ void BlinkAXTreeSource::SerializeNode(blink::WebAXObject src,
|
| dst->AddIntAttribute(ui::AX_ATTR_TABLE_CELL_ROW_SPAN, src.cellRowSpan());
|
| }
|
|
|
| + if ((dst->role == ui::AX_ROLE_ROW_HEADER ||
|
| + dst->role == ui::AX_ROLE_COLUMN_HEADER) && src.sortDirection()) {
|
| + dst->AddIntAttribute(ui::AX_ATTR_SORT_DIRECTION,
|
| + AXSortDirectionFromBlink(src.sortDirection()));
|
| + }
|
| +
|
| dst->AddStringAttribute(ui::AX_ATTR_NAME, name);
|
|
|
| // Add the ids of *indirect* children - those who are children of this node,
|
|
|