- From: poot <cvsmail@w3.org>
- Date: Tue, 31 Jan 2012 16:15:50 -0500
- To: public-html-diffs@w3.org
hixie: window.opener should return null in certain cases (whatwg r6953) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5549&r2=1.5550&f=h http://html5.org/tools/web-apps-tracker?from=6952&to=6953 =================================================================== 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:51 UTC