- From: poot <cvsmail@w3.org>
- Date: Thu, 22 Sep 2011 19:54:03 -0400
- To: public-html-diffs@w3.org
hixie: Mark some Window properties [Unforgeable]. (whatwg r6569) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5262&r2=1.5263&f=h http://html5.org/tools/web-apps-tracker?from=6568&to=6569 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5262 retrieving revision 1.5263 diff -u -d -r1.5262 -r1.5263 --- Overview.html 22 Sep 2011 23:46:37 -0000 1.5262 +++ Overview.html 22 Sep 2011 23:53:52 -0000 1.5263 @@ -43785,11 +43785,11 @@ </ol></div><h3 id="the-window-object"><span class="secno">5.2 </span>The <code><a href="#window">Window</a></code> object</h3><pre class="idl">[ReplaceableNamedProperties] interface <dfn id="window">Window</dfn> : <a href="#eventtarget">EventTarget</a> { // the current browsing context - readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-window" title="dom-window">window</a>; + [Unforgeable] readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-window" title="dom-window">window</a>; readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-self" title="dom-self">self</a>; - readonly attribute <a href="#document">Document</a> <a href="#dom-document" title="dom-document">document</a>; + [Unforgeable] readonly attribute <a href="#document">Document</a> <a href="#dom-document" title="dom-document">document</a>; attribute DOMString <a href="#dom-name" title="dom-name">name</a>; - [PutForwards=<a href="#dom-location-href" title="dom-location-href">href</a>] readonly attribute <a href="#location">Location</a> <a href="#dom-location" title="dom-location">location</a>; + [PutForwards=<a href="#dom-location-href" title="dom-location-href">href</a>, Unforgeable] readonly attribute <a href="#location">Location</a> <a href="#dom-location" title="dom-location">location</a>; readonly attribute <a href="#history-0">History</a> <a href="#dom-history" title="dom-history">history</a>; [Replaceable] readonly attribute <a href="#barprop">BarProp</a> <a href="#dom-window-locationbar" title="dom-window-locationbar">locationbar</a>; [Replaceable] readonly attribute <a href="#barprop">BarProp</a> <a href="#dom-window-menubar" title="dom-window-menubar">menubar</a>; @@ -43805,7 +43805,7 @@ // other browsing contexts [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>; - readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-top" title="dom-top">top</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>; 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>;
Received on Thursday, 22 September 2011 23:54:09 UTC