Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(943)

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp b/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
index 08c33dcda028eb1d96184be18e8818b2556ca392..f16eb77e77e3171745ffcfc00eb06a7f1369b588 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
@@ -66,7 +66,7 @@ AXObjectImpl* AXSVGRoot::ComputeParent() const {
AccessibilityRole AXSVGRoot::DetermineAccessibilityRole() {
AccessibilityRole role = AXLayoutObject::DetermineAccessibilityRole();
if (role == kUnknownRole)
- role = kGroupRole;
+ role = kGenericContainerRole;
return role;
}

Powered by Google App Engine
This is Rietveld 408576698