Bugzilla – Bug 114
Remove a redundant entry in the parser; make base, link, and meta elements get popped correctly.
Last modified: 2008-03-07 13:25:48 CET
Index: source =================================================================== --- source (revision 1315) +++ source (revision 1316) @@ -38584,22 +38584,6 @@ </dd> - <dt>A start tag token whose tag name is one of: "base", "link", - "meta", "script", "style", "title"</dt> - - <dd> - - <p>Act as if a start tag token with the tag name "head" and no - attributes had been seen, then reprocess the current - token.</p> - - <p class="note">This will result in a <code>head</code> - element being generated, and with the current token being - reprocessed in the "<span title="insertion mode: in head">in - head</span>" <span>insertion mode</span>.</p> - - </dd> - <dt>An end tag whose tag name is one of: "head", "body", "html", "p", "br"</dt> <dd> @@ -38680,13 +38664,17 @@ <dt>A start tag whose tag name is one of: "base", "link"</dt> <dd> <p><span title="insert an html element">Insert an HTML - element</span> for the token.</p> + element</span> for the token. Immediately pop the + <span>current node</span> off the <span>stack of open + elements</span>.</p> </dd> <dt>A start tag whose tag name is "meta"</dt> <dd> <p><span title="insert an html element">Insert an HTML - element</span> for the token.</p> + element</span> for the token. Immediately pop the + <span>current node</span> off the <span>stack of open + elements</span>.</p> <p id="meta-charset-during-parse">If the element has a <code title="attr-meta-charset">charset</code> attribute, and its
Already implemented.