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 2f8dca035ab5ffd22c1beb5d1ff11142b7dd9dea..7d5ee81edfc0287fc5336ab981d9c955f66c7433 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp |
@@ -502,6 +502,9 @@ bool AXLayoutObject::computeAccessibilityIsIgnored( |
if (decision == IgnoreObject) |
return true; |
+ if (m_layoutObject->isAnonymousBlock()) |
+ return true; |
+ |
// If this element is within a parent that cannot have children, it should not |
// be exposed. |
if (isDescendantOfLeafNode()) { |