| Index: third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
|
| index 150d2ffab8f5218d1061ac1a4e128897d93dd216..2dce0c7d4e38db07b290215065824f7379308fa5 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
|
| @@ -62,8 +62,8 @@ Element* AXMenuListOption::actionElement() const {
|
| }
|
|
|
| bool AXMenuListOption::isEnabled() const {
|
| - // isDisabledFormControl() returns true if the parent <select> element is disabled,
|
| - // which we don't want.
|
| + // isDisabledFormControl() returns true if the parent <select> element is
|
| + // disabled, which we don't want.
|
| return m_element && !m_element->ownElementDisabled();
|
| }
|
|
|
| @@ -131,7 +131,8 @@ String AXMenuListOption::textAlternative(bool recursive,
|
| AXNameFrom& nameFrom,
|
| AXRelatedObjectVector* relatedObjects,
|
| NameSources* nameSources) const {
|
| - // If nameSources is non-null, relatedObjects is used in filling it in, so it must be non-null as well.
|
| + // If nameSources is non-null, relatedObjects is used in filling it in, so it
|
| + // must be non-null as well.
|
| if (nameSources)
|
| ASSERT(relatedObjects);
|
|
|
|
|