html5/spec Overview.html,1.4106,1.4107

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv1956

Modified Files:
	Overview.html 
Log Message:
Captions - Stage 15: Define how to express text cues as DOM nodes (will be used by the API). (whatwg r5129)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4106
retrieving revision 1.4107
diff -u -d -r1.4106 -r1.4107
--- Overview.html	29 Jun 2010 17:49:23 -0000	1.4106
+++ Overview.html	1 Jul 2010 21:32:44 -0000	1.4107
@@ -2297,11 +2297,12 @@
   <code>Document</code></a>, its <a href="#home-subtree">home subtree</a> is that
   <code><a href="#document">Document</a></code>'s tree.<p>The <code><a href="#document">Document</a></code> of a <code><a href="#node">Node</a></code> (such as an
   element) is the <code><a href="#document">Document</a></code> that the <code><a href="#node">Node</a></code>'s
-  <code title="">ownerDocument</code> IDL attribute returns. When a
-  <code><a href="#node">Node</a></code> is <a href="#in-a-document">in a <code>Document</code></a> then
-  that <code><a href="#document">Document</a></code> is always the <code><a href="#node">Node</a></code>'s
-  <code><a href="#document">Document</a></code>, and the <code><a href="#node">Node</a></code>'s <code title="">ownerDocument</code> IDL attribute thus always returns that
-  <code><a href="#document">Document</a></code>.<p>The term <dfn id="tree-order">tree order</dfn> means a pre-order, depth-first
+  <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> IDL
+  attribute returns. When a <code><a href="#node">Node</a></code> is <a href="#in-a-document">in a
+  <code>Document</code></a> then that <code><a href="#document">Document</a></code> is
+  always the <code><a href="#node">Node</a></code>'s <code><a href="#document">Document</a></code>, and the
+  <code><a href="#node">Node</a></code>'s <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> IDL attribute
+  thus always returns that <code><a href="#document">Document</a></code>.<p>The term <dfn id="tree-order">tree order</dfn> means a pre-order, depth-first
   traversal of DOM nodes involved (through the <code title="dom-Node-parentNode"><a href="#dom-node-parentnode">parentNode</a></code>/<code title="dom-Node-childNodes"><a href="#dom-node-childnodes">childNodes</a></code> relationship).<p>When it is stated that some element or attribute is <dfn id="ignore" title="ignore">ignored</dfn>, or treated as some other value, or
   handled as if it was something else, this refers only to the
   processing of the node after it is in the DOM. <span class="impl">A
@@ -2705,11 +2706,13 @@
      <li><dfn id="dom-document-getelementbyid" title="dom-Document-getElementById"><code>getElementById()</code></dfn> method</li>
      <li><dfn id="dom-node-insertbefore" title="dom-Node-insertBefore"><code>insertBefore()</code></dfn> method</li>
 
-     <li><dfn id="dom-node-childnodes" title="dom-Node-childNodes"><code>childNodes</code></dfn> attribute </li>
-     <li><dfn id="dom-node-localname" title="dom-Node-localName"><code>localName</code></dfn> attribute </li>
-     <li><dfn id="dom-node-parentnode" title="dom-Node-parentNode"><code>parentNode</code></dfn> attribute </li>
-     <li><dfn id="dom-element-tagname" title="dom-Element-tagName"><code>tagName</code></dfn> attribute </li>
-     <li><dfn id="textcontent"><code>textContent</code></dfn> attribute </li>
+     <li><dfn id="dom-node-ownerdocument" title="dom-Node-ownerDocument"><code>ownerDocument</code></dfn> attribute</li>
+     <li><dfn id="dom-node-childnodes" title="dom-Node-childNodes"><code>childNodes</code></dfn> attribute</li>
+     <li><dfn id="dom-node-localname" title="dom-Node-localName"><code>localName</code></dfn> attribute</li>
+     <li><dfn id="dom-node-parentnode" title="dom-Node-parentNode"><code>parentNode</code></dfn> attribute</li>
+     <li><dfn id="dom-node-namespaceuri" title="dom-Node-namespaceURI"><code>namespaceURI</code></dfn> attribute</li>
+     <li><dfn id="dom-element-tagname" title="dom-Element-tagName"><code>tagName</code></dfn> attribute</li>
+     <li><dfn id="textcontent"><code>textContent</code></dfn> attribute</li>
 
     </ul><p>The following features are defined in the DOM Events
     specification: <a href="#refsDOMEVENTS">[DOMEVENTS]</a></p>
@@ -9815,20 +9818,19 @@
 
    <li>
 
-    <p>If the attribute is being set on a <code><a href="#document">Document</a></code>
-    node, let <var title="">target document</var> be that
-    <code><a href="#document">Document</a></code> node. Otherwise, the attribute is being
-    set on an <code><a href="#element">Element</a></code> node; let <var title="">target
-    document</var> be the <code title="">ownerDocument</code> of
-    that <code><a href="#element">Element</a></code>.</p>
+    <p>If the attribute is being set on a <code><a href="#document">Document</a></code> node,
+    let <var title="">target document</var> be that
+    <code><a href="#document">Document</a></code> node. Otherwise, the attribute is being set
+    on an <code><a href="#element">Element</a></code> node; let <var title="">target
+    document</var> be the <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> of that
+    <code><a href="#element">Element</a></code>.</p>
 
    </li>
 
    <li>
 
-    <p>Set the <code title="">ownerDocument</code> of all the nodes in
-    <var title="">new children</var> to the <var title="">target
-    document</var>.</p>
+    <p>Set the <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> of all the
+    nodes in <var title="">new children</var> to the <var title="">target document</var>.</p>
 
    </li>
 
@@ -9931,9 +9933,8 @@
 
    <li>
 
-    <p>Set the <code title="">ownerDocument</code> of all the nodes in
-    <var title="">new children</var> to <var title="">target</var>'s
-    document.</p>
+    <p>Set the <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> of all the
+    nodes in <var title="">new children</var> to <var title="">target</var>'s document.</p>
 
    </li>
 
@@ -10060,9 +10061,8 @@
 
    <li>
 
-    <p>Set the <code title="">ownerDocument</code> of all the nodes in
-    <var title="">new children</var> to <var title="">target</var>'s
-    document.</p>
+    <p>Set the <code title="dom-Node-ownerDocument"><a href="#dom-node-ownerdocument">ownerDocument</a></code> of all the
+    nodes in <var title="">new children</var> to <var title="">target</var>'s document.</p>
 
    </li>
 
@@ -34890,7 +34890,7 @@
    <a href="#tree-order">tree order</a>, <a href="#fire-a-simple-event">fire a simple event</a> named
    <var title="">event name</var> at the element.</li>
 
-  </ol></div><h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/93">ISSUE-93</a> (details) blocks progress to Last Call</span><dl class="element"><dt>Categories</dt>
+  </ol></div><h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><dl class="element"><dt>Categories</dt>
    <dd><a href="#flow-content">Flow content</a>.</dd>
    <dd><a href="#sectioning-root">Sectioning root</a>.</dd>
    <dd><a href="#interactive-content">Interactive content</a>.</dd>

Received on Thursday, 1 July 2010 21:32:53 UTC