[Webkit-unassigned] [Bug 55120] <input value="type=submit"> throws a warning (=?UTF-8?Q?=E2=80=9CHTML=20parse=20error=E2=80=9D?=)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 24 18:55:53 PST 2011


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





--- Comment #11 from Adam Barth <abarth at webkit.org>  2011-02-24 18:55:53 PST ---
That code should match up with <http://www.whatwg.org/specs/web-apps/current-work/#parsing-main-inbody> under "Any other end tag."  Specifically:

"Otherwise, if node is in the special category, then this is a parse error; ignore the token, and abort these steps."

if (isSpecialNode(node)) {
    parseError(token);
    return;
}

>From this list <http://www.whatwg.org/specs/web-apps/current-work/#special>, body is a special tag.

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