Skip to content

Commit

Permalink
[giow] (3) Fix a regression added in r8001 where </br foo> would act …
Browse files Browse the repository at this point in the history
…like <br foo> instead of like <br>.

Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=24233
Affected topics: HTML Syntax and Parsing

git-svn-id: http://svn.whatwg.org/webapps@8403 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 16, 2014
1 parent 0bf89db commit 0971aa8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions complete.html
Expand Up @@ -90447,8 +90447,9 @@ <h6 id=the-before-head-insertion-mode><span class=secno>12.2.5.4.3 </span>The "<
<dt>An end tag whose tag name is "br"</dt>
<dd>

<p><a href=#parse-error>Parse error</a>. Act as described in the next entry, as if this was a "br" start tag
token, rather than an end tag token.</p>
<p><a href=#parse-error>Parse error</a>. Drop the attributes from the token, and act as described in the
next entry; i.e. act as if this was a "br" start tag token with no attributes, rather than the
end tag token that it actually is.</p>

</dd>

Expand Down
5 changes: 3 additions & 2 deletions index
Expand Up @@ -90447,8 +90447,9 @@ document.body.appendChild(text);
<dt>An end tag whose tag name is "br"</dt>
<dd>

<p><a href=#parse-error>Parse error</a>. Act as described in the next entry, as if this was a "br" start tag
token, rather than an end tag token.</p>
<p><a href=#parse-error>Parse error</a>. Drop the attributes from the token, and act as described in the
next entry; i.e. act as if this was a "br" start tag token with no attributes, rather than the
end tag token that it actually is.</p>

</dd>

Expand Down
5 changes: 3 additions & 2 deletions source
Expand Up @@ -100845,8 +100845,9 @@ document.body.appendChild(text);
<dt>An end tag whose tag name is "br"</dt>
<dd>

<p><span>Parse error</span>. Act as described in the next entry, as if this was a "br" start tag
token, rather than an end tag token.</p>
<p><span>Parse error</span>. Drop the attributes from the token, and act as described in the
next entry; i.e. act as if this was a "br" start tag token with no attributes, rather than the
end tag token that it actually is.</p>

</dd>

Expand Down

0 comments on commit 0971aa8

Please sign in to comment.