https://bugs.webkit.org/show_bug.cgi?id=155567
Reviewed by Darin Adler.
This file was left out of original commit accidentally.
* accessibility/AccessibilityRenderObject.cpp:
(WebCore::AccessibilityRenderObject::addTextFieldChildren):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@198425
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-03-18 Chris Fleizach <cfleizach@apple.com>
+
+ AX: Implement AutoFill Available attribute for a text field
+ https://bugs.webkit.org/show_bug.cgi?id=155567
+
+ Reviewed by Darin Adler.
+
+ This file was left out of original commit accidentally.
+
+ * accessibility/AccessibilityRenderObject.cpp:
+ (WebCore::AccessibilityRenderObject::addTextFieldChildren):
+
2016-03-18 Csaba Osztrogonác <ossy@webkit.org>
[Mac][cmake] Unreviewed speculative buildfix after r197956. Just for fun.
2016-03-18 Csaba Osztrogonác <ossy@webkit.org>
[Mac][cmake] Unreviewed speculative buildfix after r197956. Just for fun.
return;
HTMLInputElement& input = downcast<HTMLInputElement>(*node);
return;
HTMLInputElement& input = downcast<HTMLInputElement>(*node);
+ if (HTMLElement* autoFillElement = input.autoFillButtonElement())
+ m_children.append(axObjectCache()->getOrCreate(autoFillElement));
+
HTMLElement* spinButtonElement = input.innerSpinButtonElement();
if (!is<SpinButtonElement>(spinButtonElement))
return;
HTMLElement* spinButtonElement = input.innerSpinButtonElement();
if (!is<SpinButtonElement>(spinButtonElement))
return;