Skip to content

Commit

Permalink
[] (0) Fix a logic error in the 'auto' state for scope='' which would…
Browse files Browse the repository at this point in the history
… have made it never complete in some cases. (credit: w)

git-svn-id: http://svn.whatwg.org/webapps@2093 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 21, 2008
1 parent 789ac65 commit bc652bc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
16 changes: 8 additions & 8 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -26072,6 +26072,11 @@ function AddCloud(data, x, y) { ... }</pre>
title="">x</sub></var>+<var title="">header<sub
title="">width</sub></var></span>.</p>

<li>
<p>Let <var title="">y</var> equal <span><var title="">header<sub
title="">y</sub></var>+<var title="">header<sub
title="">height</sub></var></span>.</p>

<li>
<p><i>Horizontal</i>: If <var title="">x</var> is equal to <var
title="">x<sub title="">width</sub></var>, then jump down to the
Expand Down Expand Up @@ -26102,14 +26107,9 @@ function AddCloud(data, x, y) { ... }</pre>
<p>Jump up to the step above labeled <i>horizontal</i>.</p>

<li>
<p><i>Vertical</i>: Let <var title="">y</var> equal <span><var
title="">header<sub title="">y</sub></var>+<var
title="">header<sub title="">height</sub></var></span>.</p>

<li>
<p>If <var title="">y</var> is equal to <var title="">y<sub
title="">height</sub></var>, then jump to the step below labeled
<i>end</i>.</p>
<p><i>Vertical</i>: If <var title="">y</var> is equal to <var
title="">y<sub title="">height</sub></var>, then jump to the step
below labeled <i>end</i>.</p>

<li>
<p>If there is a header cell <var title="">cell</var> anchored at
Expand Down
22 changes: 11 additions & 11 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -23391,6 +23391,14 @@ function AddCloud(data, x, y) { ... }</pre>

</li>

<li>

<p>Let <var title="">y</var> equal <span><var
title="">header<sub title="">y</sub></var>+<var
title="">header<sub title="">height</sub></var></span>.</p>

</li>

<li>

<p><i>Horizontal</i>: If <var title="">x</var> is equal to
Expand Down Expand Up @@ -23438,17 +23446,9 @@ function AddCloud(data, x, y) { ... }</pre>

<li>

<p><i>Vertical</i>: Let <var title="">y</var> equal
<span><var title="">header<sub title="">y</sub></var>+<var
title="">header<sub title="">height</sub></var></span>.</p>

</li>

<li>

<p>If <var title="">y</var> is equal to <var title="">y<sub
title="">height</sub></var>, then jump to the step below
labeled <i>end</i>.</p>
<p><i>Vertical</i>: If <var title="">y</var> is equal to
<var title="">y<sub title="">height</sub></var>, then jump
to the step below labeled <i>end</i>.</p>

</li>

Expand Down

0 comments on commit bc652bc

Please sign in to comment.