[html5] r7883 - [c] (3) <feBlend></feBlend> would be a parse error before. Oops. Fixing https:// [...]

whatwg at whatwg.org whatwg at whatwg.org
Fri May 31 13:35:04 PDT 2013


Author: ianh
Date: 2013-05-31 13:35:03 -0700 (Fri, 31 May 2013)
New Revision: 7883

Modified:
   complete.html
   index
   source
Log:
[c] (3) <feBlend></feBlend> would be a parse error before. Oops.
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21162
Affected topics: HTML Syntax and Parsing

Modified: complete.html
===================================================================
--- complete.html	2013-05-31 20:30:11 UTC (rev 7882)
+++ complete.html	2013-05-31 20:35:03 UTC (rev 7883)
@@ -91241,8 +91241,8 @@
     <ol><li><p>Initialize <var title="">node</var> to be the <a href=#current-node>current node</a> (the bottommost
      node of the stack).</li>
 
-     <li><p>If <var title="">node</var> is not an element with the same tag name as the token, then
-     this is a <a href=#parse-error>parse error</a>.</li>
+     <li><p>If <var title="">node</var>'s tag name, <a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>, is
+     not the same as the tag name of the token, then this is a <a href=#parse-error>parse error</a>.</li>
 
      <li><p><i>Loop</i>: If <var title="">node</var> is the topmost element in the <a href=#stack-of-open-elements>stack of
      open elements</a>, abort these steps. (<a href=#fragment-case>fragment case</a>)</li>

Modified: index
===================================================================
--- index	2013-05-31 20:30:11 UTC (rev 7882)
+++ index	2013-05-31 20:35:03 UTC (rev 7883)
@@ -91241,8 +91241,8 @@
     <ol><li><p>Initialize <var title="">node</var> to be the <a href=#current-node>current node</a> (the bottommost
      node of the stack).</li>
 
-     <li><p>If <var title="">node</var> is not an element with the same tag name as the token, then
-     this is a <a href=#parse-error>parse error</a>.</li>
+     <li><p>If <var title="">node</var>'s tag name, <a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>, is
+     not the same as the tag name of the token, then this is a <a href=#parse-error>parse error</a>.</li>
 
      <li><p><i>Loop</i>: If <var title="">node</var> is the topmost element in the <a href=#stack-of-open-elements>stack of
      open elements</a>, abort these steps. (<a href=#fragment-case>fragment case</a>)</li>

Modified: source
===================================================================
--- source	2013-05-31 20:30:11 UTC (rev 7882)
+++ source	2013-05-31 20:35:03 UTC (rev 7883)
@@ -102086,8 +102086,8 @@
      <li><p>Initialize <var title="">node</var> to be the <span>current node</span> (the bottommost
      node of the stack).</p></li>
 
-     <li><p>If <var title="">node</var> is not an element with the same tag name as the token, then
-     this is a <span>parse error</span>.</p></li>
+     <li><p>If <var title="">node</var>'s tag name, <span>converted to ASCII lowercase</span>, is
+     not the same as the tag name of the token, then this is a <span>parse error</span>.</p></li>
 
      <li><p><i>Loop</i>: If <var title="">node</var> is the topmost element in the <span>stack of
      open elements</span>, abort these steps. (<span>fragment case</span>)</p></li>




More information about the Commit-Watchers mailing list