- From: poot <cvsmail@w3.org>
- Date: Tue, 12 Oct 2010 18:54:54 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Try to remove legacy crazy. If this breaks any pages please let
me know. (whatwg r5613)
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4488&r2=1.4489&f=h
http://html5.org/tools/web-apps-tracker?from=5612&to=5613
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4488
retrieving revision 1.4489
diff -u -d -r1.4488 -r1.4489
--- Overview.html 12 Oct 2010 09:50:02 -0000 1.4488
+++ Overview.html 12 Oct 2010 09:54:43 -0000 1.4489
@@ -32701,8 +32701,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);
@@ -32895,15 +32895,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>
@@ -32977,9 +32974,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
Received on Tuesday, 12 October 2010 09:55:23 UTC