[html5] r5613 - [giow] (2) Try to remove legacy crazy. If this breaks any pages please let me kn [...]

whatwg at whatwg.org whatwg at whatwg.org
Tue Oct 12 02:54:38 PDT 2010


Author: ianh
Date: 2010-10-12 02:54:33 -0700 (Tue, 12 Oct 2010)
New Revision: 5613

Modified:
   complete.html
   index
   source
Log:
[giow] (2) Try to remove legacy crazy. If this breaks any pages please let me know.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10991

Modified: complete.html
===================================================================
--- complete.html	2010-10-12 09:49:56 UTC (rev 5612)
+++ complete.html	2010-10-12 09:54:33 UTC (rev 5613)
@@ -43496,8 +43496,8 @@
 
   readonly attribute <a href=#htmloptionscollection>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>;
            attribute unsigned long <a href=#dom-select-length title=dom-select-length>length</a>;
-  caller getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
-  caller getter any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
+  getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
+  any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
   void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in optional <a href=#htmlelement>HTMLElement</a> before);
   void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in long before);
   void <a href=#dom-select-remove title=dom-select-remove>remove</a>(in long index);
@@ -43710,15 +43710,12 @@
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title=dom-select-item><a href=#dom-select-item>item</a></code>(<var title="">index</var>)</dt>
    <dt><var title="">select</var>[<var title="">index</var>]</dt>
-   <dt><var title="">select</var>(<var title="">index</var>)</dt>
    <dd>
     <p>Returns the item with index <var title="">index</var> from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>. The items are sorted in <a href=#tree-order>tree order</a>.</p>
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title=dom-select-item><a href=#dom-select-item>namedItem</a></code>(<var title="">name</var>)</dt>
-   <dt><var title="">select</var>[<var title="">name</var>]</dt>
-   <dt><var title="">select</var>(<var title="">name</var>)</dt>
    <dd>
     <p>Returns the item with <a href=#concept-id title=concept-id>ID</a> or <code title=attr-option-name><a href=#attr-option-name>name</a></code> <var title="">name</var> from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>.</p>
     <p>If there are multiple matching items, then a <code><a href=#nodelist>NodeList</a></code> object containing all those elements is returned.</p>
@@ -43792,9 +43789,6 @@
   <span>indices of the supported indexed properties</span> at any
   instant are the indices supported by the object returned by the
   <code title=dom-select-options><a href=#dom-select-options>options</a></code> attribute at that
-  instant. The <span>names of the supported named properties</span> at
-  any instant are the names supported by the object returned by the
-  <code title=dom-select-options><a href=#dom-select-options>options</a></code> attribute at that
   instant.</p>
 
   <p>The <dfn id=dom-select-length title=dom-select-length><code>length</code></dfn> IDL

Modified: index
===================================================================
--- index	2010-10-12 09:49:56 UTC (rev 5612)
+++ index	2010-10-12 09:54:33 UTC (rev 5613)
@@ -43476,8 +43476,8 @@
 
   readonly attribute <a href=#htmloptionscollection>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>;
            attribute unsigned long <a href=#dom-select-length title=dom-select-length>length</a>;
-  caller getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
-  caller getter any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
+  getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
+  any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
   void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in optional <a href=#htmlelement>HTMLElement</a> before);
   void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in long before);
   void <a href=#dom-select-remove title=dom-select-remove>remove</a>(in long index);
@@ -43690,15 +43690,12 @@
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title=dom-select-item><a href=#dom-select-item>item</a></code>(<var title="">index</var>)</dt>
    <dt><var title="">select</var>[<var title="">index</var>]</dt>
-   <dt><var title="">select</var>(<var title="">index</var>)</dt>
    <dd>
     <p>Returns the item with index <var title="">index</var> from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>. The items are sorted in <a href=#tree-order>tree order</a>.</p>
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title=dom-select-item><a href=#dom-select-item>namedItem</a></code>(<var title="">name</var>)</dt>
-   <dt><var title="">select</var>[<var title="">name</var>]</dt>
-   <dt><var title="">select</var>(<var title="">name</var>)</dt>
    <dd>
     <p>Returns the item with <a href=#concept-id title=concept-id>ID</a> or <code title=attr-option-name><a href=#attr-option-name>name</a></code> <var title="">name</var> from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>.</p>
     <p>If there are multiple matching items, then a <code><a href=#nodelist>NodeList</a></code> object containing all those elements is returned.</p>
@@ -43772,9 +43769,6 @@
   <span>indices of the supported indexed properties</span> at any
   instant are the indices supported by the object returned by the
   <code title=dom-select-options><a href=#dom-select-options>options</a></code> attribute at that
-  instant. The <span>names of the supported named properties</span> at
-  any instant are the names supported by the object returned by the
-  <code title=dom-select-options><a href=#dom-select-options>options</a></code> attribute at that
   instant.</p>
 
   <p>The <dfn id=dom-select-length title=dom-select-length><code>length</code></dfn> IDL

Modified: source
===================================================================
--- source	2010-10-12 09:49:56 UTC (rev 5612)
+++ source	2010-10-12 09:54:33 UTC (rev 5613)
@@ -48631,8 +48631,8 @@
 
   readonly attribute <span>HTMLOptionsCollection</span> <span title="dom-select-options">options</span>;
            attribute unsigned long <span title="dom-select-length">length</span>;
-  caller getter any <span title="dom-select-item">item</span>(in unsigned long index);
-  caller getter any <span title="dom-select-namedItem">namedItem</span>(in DOMString name);
+  getter any <span title="dom-select-item">item</span>(in unsigned long index);
+  any <span title="dom-select-namedItem">namedItem</span>(in DOMString name);
   void <span title="dom-select-add">add</span>(in <span>HTMLElement</span> element, in optional <span>HTMLElement</span> before);
   void <span title="dom-select-add">add</span>(in <span>HTMLElement</span> element, in long before);
   void <span title="dom-select-remove">remove</span>(in long index);
@@ -48892,15 +48892,12 @@
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title="dom-select-item">item</code>(<var title="">index</var>)</dt>
    <dt><var title="">select</var>[<var title="">index</var>]</dt>
-   <dt><var title="">select</var>(<var title="">index</var>)</dt>
    <dd>
     <p>Returns the item with index <var title="">index</var> from the <span title="concept-select-option-list">list of options</span>. The items are sorted in <span>tree order</span>.</p>
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
    <dt><var title="">element</var> = <var title="">select</var> . <code title="dom-select-item">namedItem</code>(<var title="">name</var>)</dt>
-   <dt><var title="">select</var>[<var title="">name</var>]</dt>
-   <dt><var title="">select</var>(<var title="">name</var>)</dt>
    <dd>
     <p>Returns the item with <span title="concept-id">ID</span> or <code title="attr-option-name">name</code> <var title="">name</var> from the <span title="concept-select-option-list">list of options</span>.</p>
     <p>If there are multiple matching items, then a <code>NodeList</code> object containing all those elements is returned.</p>
@@ -48982,9 +48979,6 @@
   <span>indices of the supported indexed properties</span> at any
   instant are the indices supported by the object returned by the
   <code title="dom-select-options">options</code> attribute at that
-  instant. The <span>names of the supported named properties</span> at
-  any instant are the names supported by the object returned by the
-  <code title="dom-select-options">options</code> attribute at that
   instant.</p>
 
   <p>The <dfn title="dom-select-length"><code>length</code></dfn> IDL




More information about the Commit-Watchers mailing list