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

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

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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: Source/core/accessibility/AccessibilityList.cpp
diff --git a/Source/core/accessibility/AccessibilityList.cpp b/Source/core/accessibility/AccessibilityList.cpp
index 6c37152964ce8daaf7ebf7edaae49efc81eb3b2f..5fb32b5099656ea4eb27be8bd2ba2d7a4306aad7 100644
--- a/Source/core/accessibility/AccessibilityList.cpp
+++ b/Source/core/accessibility/AccessibilityList.cpp
@@ -34,7 +34,7 @@
using namespace std;
namespace WebCore {
-
+
using namespace HTMLNames;
AccessibilityList::AccessibilityList(RenderObject* renderer)
@@ -55,12 +55,12 @@ bool AccessibilityList::computeAccessibilityIsIgnored() const
{
return accessibilityIsIgnoredByDefault();
}
-
+
bool AccessibilityList::isUnorderedList() const
{
if (!m_renderer)
return false;
-
+
Node* node = m_renderer->node();
// The ARIA spec says the "list" role is supposed to mimic a UL or OL tag.
@@ -68,7 +68,7 @@ bool AccessibilityList::isUnorderedList() const
// On the Mac, there's no distinction to the client.
if (ariaRoleAttribute() == ListRole)
return true;
-
+
return node && node->hasTagName(ulTag);
}
@@ -82,17 +82,17 @@ bool AccessibilityList::isOrderedList() const
return true;
Node* node = m_renderer->node();
- return node && node->hasTagName(olTag);
+ return node && node->hasTagName(olTag);
}
bool AccessibilityList::isDescriptionList() const
{
if (!m_renderer)
return false;
-
+
Node* node = m_renderer->node();
- return node && node->hasTagName(dlTag);
+ return node && node->hasTagName(dlTag);
}
-
-
+
+
} // namespace WebCore
« no previous file with comments | « Source/core/accessibility/AccessibilityImageMapLink.cpp ('k') | Source/core/accessibility/AccessibilityListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698