Index: Source/core/accessibility/AXRenderObject.cpp |
diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp |
index 7e91919e22e80b4a5b118990c8aa9b5ea3d54b48..1f88247c3da8f881ef2a9dd149fb8e29bd4fd832 100644 |
--- a/Source/core/accessibility/AXRenderObject.cpp |
+++ b/Source/core/accessibility/AXRenderObject.cpp |
@@ -357,6 +357,9 @@ AccessibilityRole AXRenderObject::determineAccessibilityRole() |
if (node && node->hasTagName(ddTag)) |
return DescriptionListDetailRole; |
+ if (node && node->hasTagName(dlTag)) |
+ return DescriptionListRole; |
+ |
if (node && node->hasTagName(dtTag)) |
return DescriptionListTermRole; |