[html5] r8403 - [giow] (3) Fix a regression added in r8001 where </br foo> would act like <br fo [...]
whatwg at whatwg.org
whatwg at whatwg.org
Thu Jan 16 11:14:44 PST 2014
Author: ianh
Date: 2014-01-16 11:14:43 -0800 (Thu, 16 Jan 2014)
New Revision: 8403
Modified:
complete.html
index
source
Log:
[giow] (3) Fix a regression added in r8001 where </br foo> would act 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
Modified: complete.html
===================================================================
--- complete.html 2014-01-16 18:50:06 UTC (rev 8402)
+++ complete.html 2014-01-16 19:14:43 UTC (rev 8403)
@@ -90447,8 +90447,9 @@
<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>
Modified: index
===================================================================
--- index 2014-01-16 18:50:06 UTC (rev 8402)
+++ index 2014-01-16 19:14:43 UTC (rev 8403)
@@ -90447,8 +90447,9 @@
<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>
Modified: source
===================================================================
--- source 2014-01-16 18:50:06 UTC (rev 8402)
+++ source 2014-01-16 19:14:43 UTC (rev 8403)
@@ -100845,8 +100845,9 @@
<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>
More information about the Commit-Watchers
mailing list