- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 11 Jan 2010 04:38:25 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv4184 Modified Files: Overview.html Log Message: Define document.clear() (noop). (whatwg r4565) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3644 retrieving revision 1.3645 diff -u -d -r1.3644 -r1.3645 --- Overview.html 11 Jan 2010 04:13:03 -0000 1.3644 +++ Overview.html 11 Jan 2010 04:38:22 -0000 1.3645 @@ -63446,6 +63446,8 @@ readonly attribute <a href="#htmlcollection">HTMLCollection</a> <a href="#dom-document-anchors" title="dom-document-anchors">anchors</a>; readonly attribute <a href="#htmlcollection">HTMLCollection</a> <a href="#dom-document-applets" title="dom-document-applets">applets</a>; + void <a href="#dom-document-clear" title="dom-document-clear">clear</a>(); + readonly attribute <a href="#htmlallcollection">HTMLAllCollection</a> <a href="#dom-document-all" title="dom-document-all">all</a>; };</pre> @@ -63482,6 +63484,9 @@ <code>Document</code> node, whose filter matches only <code><a href="#the-applet-element">applet</a></code> elements.</p> + <p>The <dfn id="dom-document-clear" title="dom-document-clear"><code>clear()</code></dfn> + method must do nothing.</p> + <hr><p>The <dfn id="dom-document-all" title="dom-document-all"><code>all</code></dfn> attribute must return an <code><a href="#htmlallcollection">HTMLAllCollection</a></code> rooted at the <code>Document</code> node, whose filter matches all elements.</p>
Received on Monday, 11 January 2010 04:38:27 UTC