| Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| index e9c48c953843f37cea9a02bec44fee6f5726f48e..803370747873c15192e64a72b909aa4aea3faaa8 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -295,14 +295,15 @@ AccessibilityRole AXLayoutObject::DetermineAccessibilityRole() {
|
| if (role != kUnknownRole)
|
| return role;
|
|
|
| + // These are layout containers added by blink
|
| if (layout_object_->IsLayoutBlockFlow())
|
| - return kGroupRole;
|
| + return kGenericContainerRole;
|
|
|
| // If the element does not have role, but it has ARIA attributes or is an
|
| // in-page link target, accessibility should fallback to exposing it as a
|
| - // group.
|
| + // generic container.
|
| if (IsInPageLinkTarget() || SupportsARIAAttributes())
|
| - return kGroupRole;
|
| + return kGenericContainerRole;
|
|
|
| return kUnknownRole;
|
| }
|
|
|