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

Unified Diff: third_party/WebKit/Source/core/dom/AccessibleNode.h

Issue 2973973002: Implement AccessibleNode.hasPopUp for Accessibility Object Model phase 1 (Closed)
Patch Set: Fix handling of aria-haspopup=false Created 3 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: 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 d7362dfa50459d4c785a25eee232e07915b2b56c..4dce32fbabfc3a562c76d36deee794e257935118 100644
--- a/third_party/WebKit/Source/core/dom/AccessibleNode.h
+++ b/third_party/WebKit/Source/core/dom/AccessibleNode.h
@@ -25,6 +25,7 @@ enum class AOMStringProperty {
kAutocomplete,
kChecked,
kCurrent,
+ kHasPopUp,
kInvalid,
kKeyShortcuts,
kLabel,
@@ -228,6 +229,9 @@ class CORE_EXPORT AccessibleNode
AccessibleNodeList* flowTo() const;
void setFlowTo(AccessibleNodeList*);
+ AtomicString hasPopUp() const;
+ void setHasPopUp(const AtomicString&);
+
bool hidden(bool& is_null) const;
void setHidden(bool, bool is_null);

Powered by Google App Engine
This is Rietveld 408576698