[Webkit-unassigned] [Bug 117650] <meter> element AXValue is listed as a writable value

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 12 11:43:28 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=117650





--- Comment #4 from chris fleizach <cfleizach at apple.com>  2013-09-12 11:42:40 PST ---
(From update of attachment 211450)
View in context: https://bugs.webkit.org/attachment.cgi?id=211450&action=review

> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:2679
> +    if (!isMeter() && (isProgressIndicator() || isSlider()))

this would *might* still allow a meter element to be writable isReadOnly returned false

You might want to do

if (isMeter())
return false;

which will keep the logic simple

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list