[html5] r1831 - [ct] (2) Now that <p> is dealt with after looking for an <li> element, make sure [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Jun 30 14:58:14 PDT 2008


Author: ianh
Date: 2008-06-30 14:58:13 -0700 (Mon, 30 Jun 2008)
New Revision: 1831

Modified:
   index
   source
Log:
[ct] (2) Now that <p> is dealt with after looking for an <li> element, make sure we don't stop at <p>. (bug: 5796) (credit: hs)

Modified: index
===================================================================
--- index	2008-06-30 20:19:23 UTC (rev 1830)
+++ index	2008-06-30 21:58:13 UTC (rev 1831)
@@ -47536,11 +47536,12 @@
       <p>If <var title="">node</var> is not in the <a
        href="#formatting">formatting</a> category, and is not in the <a
        href="#phrasing1">phrasing</a> category, and is not an <code><a
-       href="#address">address</a></code> or <code><a
-       href="#div">div</a></code> element, then jump to the last step.
+       href="#address">address</a></code>, <code><a
+       href="#div">div</a></code>, or <code><a href="#p">p</a></code>
+       element, then jump to the last step.
      </li>
-     <!-- an element <foo> is in this list if
-     the following markup:
+     <!-- an element
+     <foo> is in this list if the following markup:
 
          <!DOCTYPE html><body><ol><li><foo><li>
 
@@ -47584,11 +47585,12 @@
       <p>If <var title="">node</var> is not in the <a
        href="#formatting">formatting</a> category, and is not in the <a
        href="#phrasing1">phrasing</a> category, and is not an <code><a
-       href="#address">address</a></code> or <code><a
-       href="#div">div</a></code> element, then jump to the last step.
+       href="#address">address</a></code>, <code><a
+       href="#div">div</a></code>, or <code><a href="#p">p</a></code>
+       element, then jump to the last step.
      </li>
-     <!-- an element <foo> is in this list if
-     the following markup:
+     <!-- an element
+     <foo> is in this list if the following markup:
 
          <!DOCTYPE html><body><dl><dt><foo><dt>
 

Modified: source
===================================================================
--- source	2008-06-30 20:19:23 UTC (rev 1830)
+++ source	2008-06-30 21:58:13 UTC (rev 1831)
@@ -44658,9 +44658,9 @@
      <li><p>If <var title="">node</var> is not in the
      <span>formatting</span> category, and is not in the
      <span>phrasing</span> category, and is not an
-     <code>address</code> or <code>div</code> element, then jump to
-     the last step.</p></li> <!-- an element <foo> is in this list if
-     the following markup:
+     <code>address</code>, <code>div</code>, or <code>p</code>
+     element, then jump to the last step.</p></li> <!-- an element
+     <foo> is in this list if the following markup:
 
          <!DOCTYPE html><body><ol><li><foo><li>
 
@@ -44707,9 +44707,9 @@
      <li><p>If <var title="">node</var> is not in the
      <span>formatting</span> category, and is not in the
      <span>phrasing</span> category, and is not an
-     <code>address</code> or <code>div</code> element, then jump to
-     the last step.</p></li> <!-- an element <foo> is in this list if
-     the following markup:
+     <code>address</code>, <code>div</code>, or <code>p</code>
+     element, then jump to the last step.</p></li> <!-- an element
+     <foo> is in this list if the following markup:
 
          <!DOCTYPE html><body><dl><dt><foo><dt>
 




More information about the Commit-Watchers mailing list