| Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| index 3ba0e4eb032618e46fe2f99a28ab31ea29ca25df..342874f1e40051063de30fc6d7e0ecffa909c1ae 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -717,7 +717,7 @@ bool AXLayoutObject::computeAccessibilityIsIgnored(IgnoredReasons* ignoredReason
|
| Element* elt = toElement(node);
|
| const AtomicString& alt = elt->getAttribute(altAttr);
|
| // don't ignore an image that has an alt tag
|
| - if (!alt.string().containsOnlyWhitespace())
|
| + if (!alt.getString().containsOnlyWhitespace())
|
| return false;
|
| // informal standard is to ignore images with zero-length alt strings
|
| if (!alt.isNull()) {
|
|
|