[Webkit-unassigned] [Bug 60602] <output>, <meter> and <progress> elements with display:block can be focused if you try to tab to it

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 11 02:01:20 PDT 2011


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





--- Comment #6 from Kent Tamura <tkent at chromium.org>  2011-05-11 02:01:20 PST ---
(In reply to comment #4)
> it seems that any elements might be focusable when the element has the tabindex attribute or content editable.  Should we change the behavior to follow the specification?  If so, it may affect almost all elements because it should be implemented in more generic place such as the Node class.

It's already implemented in Node::supportsFocus().
Output, progress, and meter should override supportsFocus() like
    return Node:supportsFocus() && !disabled().

<label> is special because it delegates focus operation to its target node.

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