Index: Source/core/accessibility/AXRenderObject.cpp |
diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp |
index c689ee7115e769e0ae921c3918059360fdbfb3f5..0c9853022fd7c7e6fdffe83f1c1395d4c2c83714 100644 |
--- a/Source/core/accessibility/AXRenderObject.cpp |
+++ b/Source/core/accessibility/AXRenderObject.cpp |
@@ -719,6 +719,9 @@ bool AXRenderObject::computeAccessibilityIsIgnored() const |
if (roleValue() == DetailsRole) |
return false; |
+ if (roleValue() == MeterRole) |
+ return false; |
+ |
// if this element has aria attributes on it, it should not be ignored. |
if (supportsARIAAttributes()) |
return false; |