- From: poot <cvsmail@w3.org>
- Date: Thu, 24 Jul 2008 17:24:24 +0900 (JST)
- To: public-html-diffs@w3.org
Define window.parent. (credit: cm, mjs) (whatwg r1924) fully active http://people.w3.org/mike/diffs/html5/spec/Overview.1.1115.html#fully 5.1.2 Auxiliary browsing contexts http://people.w3.org/mike/diffs/html5/spec/Overview.1.1115.html#auxiliary WindowBrowsingContext http://people.w3.org/mike/diffs/html5/spec/Overview.1.1115.html#windowbrowsingcontext parent http://people.w3.org/mike/diffs/html5/spec/Overview.1.1115.html#parent0 http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1114&r2=1.1115&f=h http://html5.org/tools/web-apps-tracker?from=1923&to=1924 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1114 retrieving revision 1.1115 diff -u -d -r1.1114 -r1.1115 --- Overview.html 23 Jul 2008 23:51:48 -0000 1.1114 +++ Overview.html 24 Jul 2008 01:32:30 -0000 1.1115 @@ -27,7 +27,7 @@ for HTML and XHTML</h2> <h2 class="no-num no-toc" id=editors0><!-- "W3C Working Draft" --> - Editor's Draft <!--ZZZ-->23 July 2008</h2> + Editor's Draft <!--ZZZ-->24 July 2008</h2> <dl><!-- ZZZ: update the month/day <dt>This Version:</dt> @@ -175,7 +175,7 @@ <p>The W3C <a href="http://www.w3.org/html/wg/">HTML Working Group</a> is the W3C working group responsible for this specification's progress along - the W3C Recommendation track. <!--ZZZ:--> This specification is the 23 + the W3C Recommendation track. <!--ZZZ:--> This specification is the 24 July 2008 <!--ZZZ "Working Draft"-->Editor's Draft. <!--:ZZZ--></p> <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> <!-- relationship to other work (required) --> @@ -30668,6 +30668,17 @@ a <code title=attr-iframe-seamless><a href="#seamless">seamless</a></code> attribute. + <p>The <dfn id=parent0 title=dom-parent><code>parent</code></dfn> DOM + attribute on the <code><a href="#window">Window</a></code> object of a <a + href="#browsing1">browsing context</a> <var title="">b</var> must return + the <code><a href="#window">Window</a></code> object of the <a + href="#parent">parent browsing context</a>, if there is one (i.e. if <var + title="">b</var> is a <a href="#child">child browsing context</a>), or the + <code><a href="#window">Window</a></code> object of the <a + href="#browsing1">browsing context</a> <var title="">b</var> itself, + otherwise (i.e. if it is a <a href="#top-level">top-level browsing + context</a>). + <h4 id=auxiliary><span class=secno>5.1.2 </span>Auxiliary browsing contexts</h4> <p>It is possible to create new browsing contexts that are related to a @@ -30914,6 +30925,7 @@ readonly attribute unsigned long <a href="#length7" title=dom-length>length</a>; [IndexGetter] <a href="#window">Window</a> <a href="#xxx4index" title=dom-XXX4>XXX4</a>(in unsigned long index); <!-- XXX DOMB --> readonly attribute <a href="#window">Window</a> <a href="#opener0" title=dom-opener>opener</a>; + readonly attribute <a href="#window">Window</a> <a href="#parent0" title=dom-parent>parent</a>; <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(); <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url); <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url, in DOMString target);
Received on Thursday, 24 July 2008 08:25:01 UTC