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

Unified Diff: Source/core/accessibility/AXNodeObject.cpp

Issue 697913002: Fix some minor typos related to the word "accessibility". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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: Source/core/accessibility/AXNodeObject.cpp
diff --git a/Source/core/accessibility/AXNodeObject.cpp b/Source/core/accessibility/AXNodeObject.cpp
index e192536078f014eb8d23ef0ee022c9cc6442d01e..80dc7bbc3cc1989b8dfffab6c844cadb76f748e7 100644
--- a/Source/core/accessibility/AXNodeObject.cpp
+++ b/Source/core/accessibility/AXNodeObject.cpp
@@ -1119,7 +1119,7 @@ AccessibilityRole AXNodeObject::ariaRoleAttribute() const
// When building the textUnderElement for an object, determine whether or not
// we should include the inner text of this given descendant object or skip it.
-static bool shouldUseAccessiblityObjectInnerText(AXObject* obj)
+static bool shouldUseAccessibilityObjectInnerText(AXObject* obj)
{
// Consider this hypothetical example:
// <div tabindex=0>
@@ -1161,7 +1161,7 @@ String AXNodeObject::textUnderElement() const
StringBuilder builder;
for (AXObject* child = firstChild(); child; child = child->nextSibling()) {
- if (!shouldUseAccessiblityObjectInnerText(child))
+ if (!shouldUseAccessibilityObjectInnerText(child))
continue;
if (child->isAXNodeObject()) {

Powered by Google App Engine
This is Rietveld 408576698