- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 23 Feb 2009 11:53:08 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv1094
Modified Files:
Overview.html
Log Message:
Ban cyclic references in headers=''. (whatwg r2857)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2027
retrieving revision 1.2028
diff -u -d -r1.2027 -r1.2028
--- Overview.html 23 Feb 2009 11:39:42 -0000 1.2027
+++ Overview.html 23 Feb 2009 11:53:05 -0000 1.2028
@@ -19081,9 +19081,20 @@
space-separated tokens</a>, each of which must have the value of
an ID of a <code><a href=#the-th-element>th</a></code> element taking part in the same <a href=#concept-table title=concept-table>table</a> as the <code><a href=#the-td-element>td</a></code> or
<code><a href=#the-th-element>th</a></code> element (as defined by the <a href=#table-model>table
- model</a>).<p class=note>The <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code>,
+ model</a>).<p>A <code><a href=#the-th-element>th</a></code> element with ID <var title="">id</var> is said
+ to be <i>directly targetted</i> by all <code><a href=#the-td-element>td</a></code> and
+ <code><a href=#the-th-element>th</a></code> elements in the same <a href=#concept-table title=concept-table>table</a> that have <code title=attr-tdth-headers><a href=#attr-tdth-headers>headers</a></code> attributes whose values
+ include as one of their tokens the ID <var title="">id</var>. A
+ <code><a href=#the-th-element>th</a></code> element <var title="">A</var> is said to be
+ <i>targetted</i> by a <code><a href=#the-th-element>th</a></code> or <code><a href=#the-td-element>td</a></code> element
+ <var title="">B</var> if either <var title="">A</var> is <i>directly
+ targetted</i> by <var title="">B</var> or if there exists an element
+ <var title="">C</var> that is itself <i>targetted</i> by the element
+ <var title="">B</var> and <var title="">A</var> is <i>directly
+ targetted</i> by <var title="">C</var>.<p>A <code><a href=#the-th-element>th</a></code> element must not be <i>targetted</i> by
+ itself.<p class=note>The <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code>,
<code title=attr-tdth-rowspan><a href=#attr-tdth-rowspan>rowspan</a></code>, and <code title=attr-tdth-headers><a href=#attr-tdth-headers>headers</a></code> attributes take part in the
- <a href=#table-model>table model</a>.<p>The <code><a href=#the-td-element>td</a></code> and <code><a href=#the-th-element>th</a></code> elements implement
+ <a href=#table-model>table model</a>.</p><hr><p>The <code><a href=#the-td-element>td</a></code> and <code><a href=#the-th-element>th</a></code> elements implement
interfaces that inherit from the <code><a href=#htmltablecellelement>HTMLTableCellElement</a></code>
interface:<pre class=idl>interface <dfn id=htmltablecellelement>HTMLTableCellElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute long <a href=#dom-tdth-colspan title=dom-tdth-colSpan>colSpan</a>;
Received on Monday, 23 February 2009 11:53:18 UTC