[Webkit-unassigned] [Bug 191581] Hidden attribute does not apply to optgroup and option

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 13 09:09:10 PST 2018


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

--- Comment #4 from Chris Dumez <cdumez at apple.com> ---
This may also be relevant:
bool HTMLSelectElement::childShouldCreateRenderer(const Node& child) const
{
    if (!HTMLFormControlElementWithState::childShouldCreateRenderer(child))
        return false;
#if !PLATFORM(IOS_FAMILY)
    if (!usesMenuList())
        return is<HTMLOptionElement>(child) || is<HTMLOptGroupElement>(child) || validationMessageShadowTreeContains(child);
#endif
    return validationMessageShadowTreeContains(child);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181113/4ed47794/attachment-0001.html>


More information about the webkit-unassigned mailing list