Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[giow] (2) Define 'being rendered' to exclude table rows/columns that…
… are visiblity:collapse

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

git-svn-id: http://svn.whatwg.org/webapps@4661 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 5, 2010
1 parent 0177468 commit db0b6ac
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
10 changes: 5 additions & 5 deletions complete.html
Expand Up @@ -80587,11 +80587,11 @@ <h3 id=introduction-10><span class=secno>13.1 </span>Introduction</h3>
<hr><p>An element is <dfn id=being-rendered>being rendered</dfn> if it is <a href=#in-a-document>in a
<code>Document</code></a>, either its parent node is itself
<a href=#being-rendered>being rendered</a> or it is the <code>Document</code> node,
and it is not explicitly excluded from the rendering using the CSS
'display' property's 'none' value or equivalent in other styling
languages.</p>

<p class=note>Just being off-screen does not mean the element is
and it is not explicitly excluded from the rendering using either:</p>
<ul class=brief><li>the CSS 'display' property's 'none' value, or</li>
<li>the 'visibility' property's 'collapse' value unless it is being treated as equivalent to the 'hidden' value, or</li>
<li>some equivalent in other styling languages.</li>
</ul><p class=note>Just being off-screen does not mean the element is
not <a href=#being-rendered>being rendered</a>. The presence of the <code title=attr-hidden><a href=#the-hidden-attribute>hidden</a></code> attribute normally means the
element is not <a href=#being-rendered>being rendered</a>, though this might be
overriden by the style sheets.</p>
Expand Down
10 changes: 5 additions & 5 deletions index
Expand Up @@ -74884,11 +74884,11 @@ document.body.appendChild(text);
<hr><p>An element is <dfn id=being-rendered>being rendered</dfn> if it is <a href=#in-a-document>in a
<code>Document</code></a>, either its parent node is itself
<a href=#being-rendered>being rendered</a> or it is the <code>Document</code> node,
and it is not explicitly excluded from the rendering using the CSS
'display' property's 'none' value or equivalent in other styling
languages.</p>

<p class=note>Just being off-screen does not mean the element is
and it is not explicitly excluded from the rendering using either:</p>
<ul class=brief><li>the CSS 'display' property's 'none' value, or</li>
<li>the 'visibility' property's 'collapse' value unless it is being treated as equivalent to the 'hidden' value, or</li>
<li>some equivalent in other styling languages.</li>
</ul><p class=note>Just being off-screen does not mean the element is
not <a href=#being-rendered>being rendered</a>. The presence of the <code title=attr-hidden><a href=#the-hidden-attribute>hidden</a></code> attribute normally means the
element is not <a href=#being-rendered>being rendered</a>, though this might be
overriden by the style sheets.</p>
Expand Down
9 changes: 6 additions & 3 deletions source
Expand Up @@ -89519,9 +89519,12 @@ document.body.appendChild(text);
<p>An element is <dfn>being rendered</dfn> if it is <span>in a
<code>Document</code></span>, either its parent node is itself
<span>being rendered</span> or it is the <code>Document</code> node,
and it is not explicitly excluded from the rendering using the CSS
'display' property's 'none' value or equivalent in other styling
languages.</p>
and it is not explicitly excluded from the rendering using either:</p>
<ul class="brief">
<li>the CSS 'display' property's 'none' value, or</li>
<li>the 'visibility' property's 'collapse' value unless it is being treated as equivalent to the 'hidden' value, or</li>
<li>some equivalent in other styling languages.</li>
</ul>

<p class="note">Just being off-screen does not mean the element is
not <span>being rendered</span>. The presence of the <code
Expand Down

0 comments on commit db0b6ac

Please sign in to comment.