Title: [198425] trunk/Source/WebCore
Revision
198425
Author
[email protected]
Date
2016-03-18 09:57:38 -0700 (Fri, 18 Mar 2016)

Log Message

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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (198424 => 198425)


--- trunk/Source/WebCore/ChangeLog	2016-03-18 16:08:23 UTC (rev 198424)
+++ trunk/Source/WebCore/ChangeLog	2016-03-18 16:57:38 UTC (rev 198425)
@@ -1,3 +1,15 @@
+2016-03-18  Chris Fleizach  <[email protected]>
+
+        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  <[email protected]>
 
         [Mac][cmake] Unreviewed speculative buildfix after r197956. Just for fun.

Modified: trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp (198424 => 198425)


--- trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp	2016-03-18 16:08:23 UTC (rev 198424)
+++ trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp	2016-03-18 16:57:38 UTC (rev 198425)
@@ -2931,6 +2931,9 @@
         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;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to