- From: poot <cvsmail@w3.org>
- Date: Fri, 21 Oct 2011 01:46:35 -0400
- To: public-html-diffs@w3.org
hixie: Fix HTMLDocument's definition. Oops. (whatwg r6725) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5390&r2=1.5391&f=h http://html5.org/tools/web-apps-tracker?from=6724&to=6725 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5390 retrieving revision 1.5391 diff -u -d -r1.5390 -r1.5391 --- Overview.html 20 Oct 2011 23:39:10 -0000 1.5390 +++ Overview.html 21 Oct 2011 05:46:07 -0000 1.5391 @@ -320,7 +320,7 @@ <h1>HTML5</h1> <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2> - <h2 class="no-num no-toc" id="editor-s-draft-20-october-2011">Editor's Draft 20 October 2011</h2> + <h2 class="no-num no-toc" id="editor-s-draft-21-october-2011">Editor's Draft 21 October 2011</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -466,7 +466,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 20 October 2011 Editor's Draft. + This specification is the 21 October 2011 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 @@ -7676,8 +7676,6 @@ </ol><h4 id="documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</h4><pre class="idl">[OverrideBuiltins] partial interface <a href="#document">Document</a> { - readonly attribute <code><a href="#document">Document</a></code> <a href="#htmldocument" title="HTMLDocument">HTMLDocument</a>; - // <a href="#resource-metadata-management">resource metadata management</a> [PutForwards=<a href="#dom-location-href" title="dom-location-href">href</a>] readonly attribute <a href="#location">Location</a>? <a href="#dom-document-location" title="dom-document-location">location</a>; readonly attribute DOMString <a href="#dom-document-url" title="dom-document-URL">URL</a>; @@ -7780,8 +7778,7 @@ // special <a href="#event-handler-idl-attributes">event handler IDL attributes</a> that only apply to Document objects [TreatNonCallableAsNull] attribute <a href="#function">Function</a>? <a href="#handler-onreadystatechange" title="handler-onreadystatechange">onreadystatechange</a>; -};</pre><p>The <dfn id="htmldocument"><code>HTMLDocument</code></dfn> IDL attribute must - return the <code><a href="#document">Document</a></code> object on which it is called.<h4 id="security-document"><span class="secno">3.1.2 </span>Security</h4><p id="security">User agents <span class="impl">must</span> throw a +};</pre><h4 id="security-document"><span class="secno">3.1.2 </span>Security</h4><p id="security">User agents <span class="impl">must</span> throw a <code><a href="#securityerror">SecurityError</a></code> exception whenever any properties of a <code><a href="#document">Document</a></code> object are accessed by scripts whose <a href="#effective-script-origin">effective script origin</a> is not the <a href="#same-origin" title="same @@ -44412,6 +44409,9 @@ [TreatNonCallableAsNull] attribute <a href="#function">Function</a>? <a href="#handler-window-onunload" title="handler-window-onunload">onunload</a>; [TreatNonCallableAsNull] attribute <a href="#function">Function</a>? <a href="#handler-onvolumechange" title="handler-onvolumechange">onvolumechange</a>; [TreatNonCallableAsNull] attribute <a href="#function">Function</a>? <a href="#handler-onwaiting" title="handler-onwaiting">onwaiting</a>; + + // legacy "interfaces" + readonly attribute <code><a href="#document">Document</a></code> <a href="#htmldocument" title="HTMLDocument">HTMLDocument</a>; };</pre><dl class="domintro"><dt><var title="">window</var> . <code title="dom-window"><a href="#dom-window">window</a></code></dt> <dt><var title="">window</var> . <code title="dom-frames"><a href="#dom-frames">frames</a></code></dt> <dt><var title="">window</var> . <code title="dom-self"><a href="#dom-self">self</a></code></dt> @@ -44457,6 +44457,9 @@ <code><a href="#windowproxy">WindowProxy</a></code> object, if there is one, or null otherwise.</p> + <hr><p>The <dfn id="htmldocument"><code>HTMLDocument</code></dfn> IDL attribute must + return the <code><a href="#document">Document</a></code> interface prototype object.</p> + </div><div class="impl"> <h4 id="security-window"><span class="secno">5.2.1 </span>Security</h4>
Received on Friday, 21 October 2011 05:46:41 UTC