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

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

Issue 1525793002: Fall back to title element text for SVG root text alternatives (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: + AXSVGRoot override Created 5 years 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 c2fbcc8445b1d1967145dd8291c3f921e148a402..b7d100631b6ab39eb72bb175426f681804a8b09e 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp
@@ -68,5 +68,9 @@ AXObject* AXSVGRoot::computeParent() const
return AXLayoutObject::computeParent();
}
+bool AXSVGRoot::computeAccessibilityIsIgnored(IgnoredReasons* reasons) const
aboxhall 2015/12/15 19:56:03 Let's revert this for this change, and use the rol
dmazzoni 2015/12/15 20:00:45 Why? What's wrong with keeping the SVG root elemen
+{
+ return false;
+}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698