Make sure auto fill buttons are accessible and that we notify the text field that its available too <rdar://problem/24307473>
Created attachment 274235 [details] patch
Created attachment 274239 [details] patch
Created attachment 274245 [details] patch
Comment on attachment 274245 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=274245&action=review > Source/WebCore/accessibility/AccessibilityObject.cpp:2207 > + if (!node || !is<HTMLInputElement>(*node)) > + return false; This can be written like this: if (!is<HTMLInputElement>(node)) return false; The is<> function does the null check as long as you pass it a pointer rather than a reference.
(In reply to comment #4) > Comment on attachment 274245 [details] > patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=274245&action=review > > > Source/WebCore/accessibility/AccessibilityObject.cpp:2207 > > + if (!node || !is<HTMLInputElement>(*node)) > > + return false; > > This can be written like this: > > if (!is<HTMLInputElement>(node)) > return false; > > The is<> function does the null check as long as you pass it a pointer > rather than a reference. Thanks!
http://trac.webkit.org/changeset/198333
*** Bug 145200 has been marked as a duplicate of this bug. ***