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

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

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Single quote 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;
dmazzoni 2017/05/16 16:25:39 Maybe this one should be group?
aleventhal1 2017/05/16 18:11:26 Here's my general rule: role="group" or "fieldset"
dmazzoni 2017/05/17 22:07:39 Yeah, but the spec specifically says the default r
return role;
}

Powered by Google App Engine
This is Rietveld 408576698