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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp

Issue 2890723003: Slider events with valuetext (Closed)
Patch Set: Fix test Created 3 years, 7 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/modules/accessibility/AXNodeObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
index 251238a8fea32c8a7cee245901b87a312f7d7dee..eb389e086c2e0d601ae68e914321c49eadd939c2 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
@@ -1156,6 +1156,10 @@ bool AXNodeObject::IsNativeSlider() const {
return toHTMLInputElement(node)->type() == InputTypeNames::range;
}
+bool AXNodeObject::IsMoveableSplitter() const {
+ return RoleValue() == kSplitterRole && CanSetFocusAttribute();
+}
+
bool AXNodeObject::IsClickable() const {
if (GetNode()) {
if (GetNode()->IsElementNode() &&

Powered by Google App Engine
This is Rietveld 408576698