[html5] r4276 - [iow] (2) Tentatively drop HTMLCollection.tags() (e.g. document.images.tags()).
whatwg at whatwg.org
whatwg at whatwg.org
Thu Oct 22 17:27:01 PDT 2009
Author: ianh
Date: 2009-10-22 17:26:57 -0700 (Thu, 22 Oct 2009)
New Revision: 4276
Modified:
complete.html
index
source
Log:
[iow] (2) Tentatively drop HTMLCollection.tags() (e.g. document.images.tags()).
Modified: complete.html
===================================================================
--- complete.html 2009-10-22 23:58:40 UTC (rev 4275)
+++ complete.html 2009-10-23 00:26:57 UTC (rev 4276)
@@ -110,7 +110,7 @@
<header class=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<hgroup><h1>Web Applications 1.0</h1>
- <h2 class="no-num no-toc">Draft Standard — 22 October 2009</h2>
+ <h2 class="no-num no-toc">Draft Standard — 23 October 2009</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -5660,8 +5660,11 @@
<pre class=idl>interface <dfn id=htmlcollection>HTMLCollection</dfn> {
readonly attribute unsigned long <a href=#dom-htmlcollection-length title=dom-HTMLCollection-length>length</a>;
caller getter Element <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>(in unsigned long index);
- caller getter Element <a href=#dom-htmlcollection-nameditem title=dom-HTMLCollection-namedItem>namedItem</a>(in DOMString name);
- <a href=#htmlallcollection>HTMLAllCollection</a> <a href=#dom-htmlcollection-tags title=dom-HTMLCollection-tags>tags</a>(in DOMString tagName);
+ caller getter Element <a href=#dom-htmlcollection-nameditem title=dom-HTMLCollection-namedItem>namedItem</a>(in DOMString name);<!--
+ (removed on the assuption that browsers will remove support:)
+ https://bugs.webkit.org/show_bug.cgi?id=30695
+ https://bugs.opera.com/browse/CORE-25171
+ <span>HTMLAllCollection</span> <span title="dom-HTMLCollection-tags">tags</span>(in DOMString tagName);-->
};</pre>
<dl class=domintro><dt><var title="">collection</var> . <code title=dom-HTMLCollection-length><a href=#dom-htmlcollection-length>length</a></code></dt>
@@ -5690,12 +5693,12 @@
<code><a href=#the-object-element>object</a></code> elements can have a name for the purpose of
this method; their name is given by the value of their <code title="">name</code> attribute.</p>
</dd>
-
- <dt><var title="">collection</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-tags><a href=#dom-htmlcollection-tags>tags</a></code>(<var title="">tagName</var>)</dt>
+<!--(see IDL)
+ <dt><var title="">collection</var> = <var title="">collection</var> . <code title="dom-HTMLCollection-tags">tags</code>(<var title="">tagName</var>)</dt>
<dd>
<p>Returns a collection that is a filtered view of the current collection, containing only elements with the given tag name.</p>
</dd>
-
+-->
</dl><div class=impl>
<hr><p>The object's <span>indices of the supported indexed
@@ -5735,16 +5738,17 @@
</ul><p>If no such elements are found, then the method must return
null.</p>
-
- <p>The <dfn id=dom-htmlcollection-tags title=dom-HTMLCollection-tags><code>tags(<var title="">tagName</var>)</code></dfn> method must return an
- <code><a href=#htmlallcollection>HTMLAllCollection</a></code> rooted at the same node as the
- <code><a href=#htmlcollection>HTMLCollection</a></code> object on which the method was invoked,
- whose filter matches only <a href=#html-elements>HTML elements</a> whose local
+<!--(see IDL)
+ <p>The <dfn title="dom-HTMLCollection-tags"><code>tags(<var
+ title="">tagName</var>)</code></dfn> method must return an
+ <code>HTMLAllCollection</code> rooted at the same node as the
+ <code>HTMLCollection</code> object on which the method was invoked,
+ whose filter matches only <span>HTML elements</span> whose local
name is the <var title="">tagName</var> argument and that already
- match the filter of the <code><a href=#htmlcollection>HTMLCollection</a></code> object on which
- the method was invoked. In <a href=#html-documents>HTML documents</a>, the argument
- must first be <a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>.</p>
-
+ match the filter of the <code>HTMLCollection</code> object on which
+ the method was invoked. In <span>HTML documents</span>, the argument
+ must first be <span>converted to ASCII lowercase</span>.</p>
+-->
</div>
Modified: index
===================================================================
--- index 2009-10-22 23:58:40 UTC (rev 4275)
+++ index 2009-10-23 00:26:57 UTC (rev 4276)
@@ -111,7 +111,7 @@
<header class=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<hgroup><h1>HTML5</h1>
- <h2 class="no-num no-toc">Draft Standard — 22 October 2009</h2>
+ <h2 class="no-num no-toc">Draft Standard — 23 October 2009</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -5490,8 +5490,11 @@
<pre class=idl>interface <dfn id=htmlcollection>HTMLCollection</dfn> {
readonly attribute unsigned long <a href=#dom-htmlcollection-length title=dom-HTMLCollection-length>length</a>;
caller getter Element <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>(in unsigned long index);
- caller getter Element <a href=#dom-htmlcollection-nameditem title=dom-HTMLCollection-namedItem>namedItem</a>(in DOMString name);
- <a href=#htmlallcollection>HTMLAllCollection</a> <a href=#dom-htmlcollection-tags title=dom-HTMLCollection-tags>tags</a>(in DOMString tagName);
+ caller getter Element <a href=#dom-htmlcollection-nameditem title=dom-HTMLCollection-namedItem>namedItem</a>(in DOMString name);<!--
+ (removed on the assuption that browsers will remove support:)
+ https://bugs.webkit.org/show_bug.cgi?id=30695
+ https://bugs.opera.com/browse/CORE-25171
+ <span>HTMLAllCollection</span> <span title="dom-HTMLCollection-tags">tags</span>(in DOMString tagName);-->
};</pre>
<dl class=domintro><dt><var title="">collection</var> . <code title=dom-HTMLCollection-length><a href=#dom-htmlcollection-length>length</a></code></dt>
@@ -5520,12 +5523,12 @@
<code><a href=#the-object-element>object</a></code> elements can have a name for the purpose of
this method; their name is given by the value of their <code title="">name</code> attribute.</p>
</dd>
-
- <dt><var title="">collection</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-tags><a href=#dom-htmlcollection-tags>tags</a></code>(<var title="">tagName</var>)</dt>
+<!--(see IDL)
+ <dt><var title="">collection</var> = <var title="">collection</var> . <code title="dom-HTMLCollection-tags">tags</code>(<var title="">tagName</var>)</dt>
<dd>
<p>Returns a collection that is a filtered view of the current collection, containing only elements with the given tag name.</p>
</dd>
-
+-->
</dl><div class=impl>
<hr><p>The object's <span>indices of the supported indexed
@@ -5565,16 +5568,17 @@
</ul><p>If no such elements are found, then the method must return
null.</p>
-
- <p>The <dfn id=dom-htmlcollection-tags title=dom-HTMLCollection-tags><code>tags(<var title="">tagName</var>)</code></dfn> method must return an
- <code><a href=#htmlallcollection>HTMLAllCollection</a></code> rooted at the same node as the
- <code><a href=#htmlcollection>HTMLCollection</a></code> object on which the method was invoked,
- whose filter matches only <a href=#html-elements>HTML elements</a> whose local
+<!--(see IDL)
+ <p>The <dfn title="dom-HTMLCollection-tags"><code>tags(<var
+ title="">tagName</var>)</code></dfn> method must return an
+ <code>HTMLAllCollection</code> rooted at the same node as the
+ <code>HTMLCollection</code> object on which the method was invoked,
+ whose filter matches only <span>HTML elements</span> whose local
name is the <var title="">tagName</var> argument and that already
- match the filter of the <code><a href=#htmlcollection>HTMLCollection</a></code> object on which
- the method was invoked. In <a href=#html-documents>HTML documents</a>, the argument
- must first be <a href=#converted-to-ascii-lowercase>converted to ASCII lowercase</a>.</p>
-
+ match the filter of the <code>HTMLCollection</code> object on which
+ the method was invoked. In <span>HTML documents</span>, the argument
+ must first be <span>converted to ASCII lowercase</span>.</p>
+-->
</div>
Modified: source
===================================================================
--- source 2009-10-22 23:58:40 UTC (rev 4275)
+++ source 2009-10-23 00:26:57 UTC (rev 4276)
@@ -5178,8 +5178,11 @@
<pre class="idl">interface <dfn>HTMLCollection</dfn> {
readonly attribute unsigned long <span title="dom-HTMLCollection-length">length</span>;
caller getter Element <span title="dom-HTMLCollection-item">item</span>(in unsigned long index);
- caller getter Element <span title="dom-HTMLCollection-namedItem">namedItem</span>(in DOMString name);
- <span>HTMLAllCollection</span> <span title="dom-HTMLCollection-tags">tags</span>(in DOMString tagName);
+ caller getter Element <span title="dom-HTMLCollection-namedItem">namedItem</span>(in DOMString name);<!--
+ (removed on the assuption that browsers will remove support:)
+ https://bugs.webkit.org/show_bug.cgi?id=30695
+ https://bugs.opera.com/browse/CORE-25171
+ <span>HTMLAllCollection</span> <span title="dom-HTMLCollection-tags">tags</span>(in DOMString tagName);-->
};</pre>
<dl class="domintro">
@@ -5211,12 +5214,12 @@
this method; their name is given by the value of their <code
title="">name</code> attribute.</p>
</dd>
-
+<!--(see IDL)
<dt><var title="">collection</var> = <var title="">collection</var> . <code title="dom-HTMLCollection-tags">tags</code>(<var title="">tagName</var>)</dt>
<dd>
<p>Returns a collection that is a filtered view of the current collection, containing only elements with the given tag name.</p>
</dd>
-
+-->
</dl>
<div class="impl">
@@ -5271,7 +5274,7 @@
<p>If no such elements are found, then the method must return
null.</p>
-
+<!--(see IDL)
<p>The <dfn title="dom-HTMLCollection-tags"><code>tags(<var
title="">tagName</var>)</code></dfn> method must return an
<code>HTMLAllCollection</code> rooted at the same node as the
@@ -5281,7 +5284,7 @@
match the filter of the <code>HTMLCollection</code> object on which
the method was invoked. In <span>HTML documents</span>, the argument
must first be <span>converted to ASCII lowercase</span>.</p>
-
+-->
</div>
More information about the Commit-Watchers
mailing list