| Index: third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AccessibleNode.h b/third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| index d082d346a6899db6ff4ab554edbcf8e4ee906460..333d5ef119739b521d2f826fe1423755d8ef3a48 100644
|
| --- a/third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| +++ b/third_party/WebKit/Source/core/dom/AccessibleNode.h
|
| @@ -49,9 +49,13 @@ class CORE_EXPORT AccessibleNode
|
| explicit AccessibleNode(Element*);
|
| virtual ~AccessibleNode();
|
|
|
| + // Returns the given string property if the Element has an AccessibleNode.
|
| + static const AtomicString& GetProperty(Element*, AOMStringProperty);
|
| +
|
| // Returns the given string property if the Element has an AccessibleNode,
|
| // otherwise returns the equivalent ARIA attribute.
|
| - static const AtomicString& GetProperty(Element*, AOMStringProperty);
|
| + static const AtomicString& GetPropertyOrARIAAttribute(Element*,
|
| + AOMStringProperty);
|
|
|
| AtomicString autocomplete() const;
|
| void setAutocomplete(const AtomicString&);
|
|
|