[Webkit-unassigned] [Bug 44390] HTML5 TreeBuilder builds wrong DOM for <a><svg><tr><input></a>

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Aug 22 10:10:01 PDT 2010


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





--- Comment #1 from Eric Seidel <eric at webkit.org>  2010-08-22 10:10:01 PST ---
Actually, I think this might be an adoption agency bug caused by this FIXME:

bool isNotFormattingAndNotPhrasing(const Element* element)
{
    // The spec often says "node is not in the formatting category, and is not
    // in the phrasing category". !phrasing && !formatting == scoping || special
    // scoping || special is easier to compute.
    // FIXME: localName() is wrong for non-html content.
    const AtomicString& tagName = element->localName();
    return isScopingTag(tagName) || isSpecialTag(tagName);

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