html5/spec Overview.html,1.1114,1.1115

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv20782

Modified Files:
	Overview.html 
Log Message:
Define window.parent. (credit: cm, mjs) (whatwg r1924)

Index: Overview.html
===================================================================
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 01:33:11 UTC