html5/spec Overview.html,1.5549,1.5550

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

Modified Files:
	Overview.html 
Log Message:
window.opener should return null in certain cases (whatwg r6953)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5549
retrieving revision 1.5550
diff -u -d -r1.5549 -r1.5550
--- Overview.html	31 Jan 2012 20:41:43 -0000	1.5549
+++ Overview.html	31 Jan 2012 21:15:39 -0000	1.5550
@@ -45621,11 +45621,11 @@
   context</a> from which the current <a href="#browsing-context">browsing context</a>
   was created (its <a href="#opener-browsing-context">opener browsing context</a>), if there is
   one, if it is still available, and if the current <a href="#browsing-context">browsing
-  context</a> has not <i><a href="#disowned-its-opener">disowned its opener</a></i>. On setting, if
-  the new value is null then the current <a href="#browsing-context">browsing context</a>
-  must <dfn id="disowned-its-opener" title="disowned its opener">disown its opener</dfn>; if
-  the new value is anything else then the user agent must ignore the
-  new value.<h4 id="secondary-browsing-contexts"><span class="secno">5.1.3 </span>Secondary browsing contexts</h4><p>User agents may support <dfn id="secondary-browsing-context" title="secondary browsing
+  context</a> has not <i><a href="#disowned-its-opener">disowned its opener</a></i>; otherwise, it
+  must return null. On setting, if the new value is null then the
+  current <a href="#browsing-context">browsing context</a> must <dfn id="disowned-its-opener" title="disowned its
+  opener">disown its opener</dfn>; if the new value is anything else
+  then the user agent must ignore the new value.<h4 id="secondary-browsing-contexts"><span class="secno">5.1.3 </span>Secondary browsing contexts</h4><p>User agents may support <dfn id="secondary-browsing-context" title="secondary browsing
   context">secondary browsing contexts</dfn>, which are <a href="#browsing-context" title="browsing context">browsing contexts</a> that form part of
   the user agent's interface, apart from the main content area.</p><div class="impl">
 
@@ -46018,7 +46018,7 @@
   [Replaceable] readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-frames" title="dom-frames">frames</a>;
   [Replaceable] readonly attribute unsigned long <a href="#dom-length" title="dom-length">length</a>;
   [Unforgeable] readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-top" title="dom-top">top</a>;
-           attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-opener" title="dom-opener">opener</a>;
+           attribute <a href="#windowproxy">WindowProxy</a>? <a href="#dom-opener" title="dom-opener">opener</a>;
   readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-parent" title="dom-parent">parent</a>;
   readonly attribute <a href="#element">Element</a>? <a href="#dom-frameelement" title="dom-frameElement">frameElement</a>;
   <a href="#windowproxy">WindowProxy</a> <a href="#dom-open" title="dom-open">open</a>(optional DOMString url, optional DOMString target, optional DOMString features, optional boolean replace);

Received on Tuesday, 31 January 2012 21:15:45 UTC