html5/spec Overview.html,1.3927,1.3928

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

Modified Files:
	Overview.html 
Log Message:
xref getElementById() (whatwg r4907)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3927
retrieving revision 1.3928
diff -u -d -r1.3927 -r1.3928
--- Overview.html	30 Mar 2010 22:00:50 -0000	1.3927
+++ Overview.html	30 Mar 2010 22:04:26 -0000	1.3928
@@ -2578,6 +2578,7 @@
      <li><dfn id="element"><code>Element</code></dfn></li>
      <li><dfn id="nodelist"><code>NodeList</code></dfn></li>
      <li><dfn id="textcontent"><code>textContent</code></dfn></li>
+     <li><dfn id="getelementbyid"><code>getElementById()</code></dfn></li>
     </ul><p>The following features are defined in the DOM Events
     specification: <a href="#refsDOMEVENTS">[DOMEVENTS]</a></p>
     <ul class="brief"><li><dfn id="event"><code>Event</code></dfn></li>
@@ -5425,9 +5426,9 @@
   <ol><li>If the corresponding content attribute is absent, then the
    IDL attribute must return null.</li>
 
-   <li>Let <var title="">candidate</var> be the element that the <code title="">document.getElementById()</code> method would find if it
-   was passed as its argument the current value of the corresponding
-   content attribute.</li>
+   <li>Let <var title="">candidate</var> be the element that the <code title="getElementById()"><a href="#getelementbyid">document.getElementById()</a></code> method
+   would find if it was passed as its argument the current value of
+   the corresponding content attribute.</li>
 
    <li>If <var title="">candidate</var> is null, or if it is not
    type-compatible with the IDL attribute, then the IDL attribute must
@@ -6991,20 +6992,16 @@
  &lt;p id="p3" class="bbb ccc"/&gt;
 &lt;/div&gt;</pre>
 
-   <p>A call to
-   <code>document.getElementById('example').getElementsByClassName('aaa')</code>
-   would return a <code><a href="#nodelist">NodeList</a></code> with the two paragraphs
-   <code>p1</code> and <code>p2</code> in it.</p>
+   <p>A call to <code title="">document.getElementById('example').getElementsByClassName('aaa')</code>
+   would return a <code><a href="#nodelist">NodeList</a></code> with the two paragraphs <code title="">p1</code> and <code title="">p2</code> in it.</p>
 
-   <p>A call to <code>getElementsByClassName('ccc&nbsp;bbb')</code>
-   would only return one node, however, namely <code>p3</code>. A call
-   to
-   <code>document.getElementById('example').getElementsByClassName('bbb&nbsp;&nbsp;ccc&nbsp;')</code>
+   <p>A call to <code title="">getElementsByClassName('ccc&nbsp;bbb')</code> would only
+   return one node, however, namely <code title="">p3</code>. A call
+   to <code title="">document.getElementById('example').getElementsByClassName('bbb&nbsp;&nbsp;ccc&nbsp;')</code>
    would return the same thing.</p>
 
-   <p>A call to <code>getElementsByClassName('aaa,bbb')</code> would
-   return no nodes; none of the elements above are in the "aaa,bbb"
-   class.</p>
+   <p>A call to <code title="">getElementsByClassName('aaa,bbb')</code> would return no
+   nodes; none of the elements above are in the "aaa,bbb" class.</p>
 
   </div><!-- v2:
 >         * xGetParentElementByClassName(rootElement, className, tagName) -
@@ -7466,7 +7463,7 @@
   the element with the given value (exactly, including any space
   characters) for the purposes of ID matching within the element's
   <a href="#home-subtree">home subtree</a> (e.g. for selectors in CSS or for the
-  <code>getElementById()</code> method in the DOM).</p>
+  <code><a href="#getelementbyid">getElementById()</a></code> method in the DOM).</p>
 
   <p>Identifiers are opaque strings. Particular meanings should not be
   derived from the value of the <code title="attr-id"><a href="#the-id-attribute">id</a></code>
@@ -37309,7 +37306,7 @@
   attribute gives the element's <a href="#context-menus" title="context menus">context
   menu</a>. The value must be the ID of a <code><a href="#menus">menu</a></code> element
   in the DOM. <span class="impl">If the node that would be obtained by
-  the invoking the <code>getElementById()</code> method using the
+  the invoking the <code><a href="#getelementbyid">getElementById()</a></code> method using the
   attribute's value as the only argument is null or not a
   <code><a href="#menus">menu</a></code> element, then the element has no assigned context
   menu. Otherwise, the element's assigned context menu is the element

Received on Tuesday, 30 March 2010 22:04:31 UTC