Skip to content

Commit

Permalink
[e] (0) Handle the case where /node/ is removed in step 7.2 and then …
Browse files Browse the repository at this point in the history
…we return to 7.1 and try to index based on /node/.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=7701

git-svn-id: http://svn.whatwg.org/webapps@4040 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 29, 2009
1 parent e230ce6 commit 52258a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion index
Expand Up @@ -66416,7 +66416,12 @@ document.body.appendChild(text);

<ol><li>Let <var title="">node</var> be the element immediately
above <var title="">node</var> in the <a href=#stack-of-open-elements>stack of open
elements</a>.</li>
elements</a>, or if <var title="">node</var> is no longer in
the <a href=#stack-of-open-elements>stack of open elements</a> (e.g. because it got
removed by the next step), the element that was immediately
above <var title="">node</var> in the <a href=#stack-of-open-elements>stack of open
elements</a> before <var title="">node</var> was
removed.</li>

<li>If <var title="">node</var> is not in the <a href=#list-of-active-formatting-elements>list of
active formatting elements</a>, then remove <var title="">node</var> from the <a href=#stack-of-open-elements>stack of open
Expand Down
7 changes: 6 additions & 1 deletion source
Expand Up @@ -81668,7 +81668,12 @@ document.body.appendChild(text);

<li>Let <var title="">node</var> be the element immediately
above <var title="">node</var> in the <span>stack of open
elements</span>.</li>
elements</span>, or if <var title="">node</var> is no longer in
the <span>stack of open elements</span> (e.g. because it got
removed by the next step), the element that was immediately
above <var title="">node</var> in the <span>stack of open
elements</span> before <var title="">node</var> was
removed.</li>

<li>If <var title="">node</var> is not in the <span>list of
active formatting elements</span>, then remove <var
Expand Down

0 comments on commit 52258a1

Please sign in to comment.