| Index: Source/modules/accessibility/AXTableCell.cpp
|
| diff --git a/Source/modules/accessibility/AXTableCell.cpp b/Source/modules/accessibility/AXTableCell.cpp
|
| index 48d5ef9d9e852e21fe7fa9ed5288e4f7760fc289..4cd64e4e9a283b36bc8eaf7b2d18e3f5440e660a 100644
|
| --- a/Source/modules/accessibility/AXTableCell.cpp
|
| +++ b/Source/modules/accessibility/AXTableCell.cpp
|
| @@ -68,16 +68,16 @@ bool AXTableCell::isColumnHeaderCell() const
|
| return equalIgnoringCase(scope, "col") || equalIgnoringCase(scope, "colgroup");
|
| }
|
|
|
| -bool AXTableCell::computeAccessibilityIsIgnored() const
|
| +bool AXTableCell::computeAccessibilityIsIgnored(PassRefPtr<TypeBuilder::Array<TypeBuilder::Accessibility::AXProperty>> ignoredReasons) const
|
| {
|
| - AXObjectInclusion decision = defaultObjectInclusion();
|
| + AXObjectInclusion decision = defaultObjectInclusion(ignoredReasons);
|
| if (decision == IncludeObject)
|
| return false;
|
| if (decision == IgnoreObject)
|
| return true;
|
|
|
| if (!isTableCell())
|
| - return AXLayoutObject::computeAccessibilityIsIgnored();
|
| + return AXLayoutObject::computeAccessibilityIsIgnored(ignoredReasons);
|
|
|
| return false;
|
| }
|
|
|