Skip to content

Commit

Permalink
[ct] (2) Now that <p> is dealt with after looking for an <li> element…
Browse files Browse the repository at this point in the history
…, make sure we don't stop at <p>. (bug: 5796) (credit: hs)

git-svn-id: http://svn.whatwg.org/webapps@1831 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 30, 2008
1 parent f0a96b9 commit 1b62500
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
18 changes: 10 additions & 8 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -47536,11 +47536,12 @@ function receiver(e) {
<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>

Expand Down Expand Up @@ -47584,11 +47585,12 @@ function receiver(e) {
<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>

Expand Down
12 changes: 6 additions & 6 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -44658,9 +44658,9 @@ function receiver(e) {
<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>

Expand Down Expand Up @@ -44707,9 +44707,9 @@ function receiver(e) {
<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>

Expand Down

0 comments on commit 1b62500

Please sign in to comment.