| Index: Source/core/accessibility/AXNodeObject.cpp
|
| diff --git a/Source/core/accessibility/AXNodeObject.cpp b/Source/core/accessibility/AXNodeObject.cpp
|
| index 7f663aa8817b6fbc4f92b07476e72f44139da862..4ee473c334bd91acc92d38c92c7c0be4a13efcf2 100644
|
| --- a/Source/core/accessibility/AXNodeObject.cpp
|
| +++ b/Source/core/accessibility/AXNodeObject.cpp
|
| @@ -191,6 +191,8 @@ AccessibilityRole AXNodeObject::determineAccessibilityRole()
|
| return StaticTextRole;
|
| if (isHTMLButtonElement(*node()))
|
| return buttonRoleType();
|
| + if (isHTMLDetailsElement(*node()))
|
| + return DetailsRole;
|
| if (isHTMLInputElement(*node())) {
|
| HTMLInputElement& input = toHTMLInputElement(*node());
|
| const AtomicString& type = input.type();
|
|
|