html5/spec Overview.html,1.5262,1.5263

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

Modified Files:
	Overview.html 
Log Message:
Mark some Window properties [Unforgeable]. (whatwg r6569)

Index: Overview.html
===================================================================
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:53:58 UTC