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 3dab7c4573f31433e841f96eab9e5acceda75052..cb906cd7ca1923b144c9f745bc721fe5a6ecc804 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp |
@@ -659,6 +659,9 @@ bool AXLayoutObject::computeAccessibilityIsIgnored(IgnoredReasons* ignoredReason |
if (hasContentEditableAttributeSet()) |
return false; |
+ if (roleValue() == AbbrRole) |
+ return false; |
+ |
// List items play an important role in defining the structure of lists. They should not be ignored. |
if (roleValue() == ListItemRole) |
return false; |