- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 13 Aug 2008 00:20:47 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv3233 Modified Files: Overview.html Log Message: Move things around in the IDL so that browsing-context related stuff is closer together. (whatwg r2067) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1244 retrieving revision 1.1245 diff -u -d -r1.1244 -r1.1245 --- Overview.html 13 Aug 2008 00:16:50 -0000 1.1244 +++ Overview.html 13 Aug 2008 00:20:45 -0000 1.1245 @@ -31887,6 +31887,19 @@ readonly attribute <a href="#undomanager">UndoManager</a> <a href="#undomanager0" title=dom-undoManager>undoManager</a>; <a href="#selection1">Selection</a> <a href="#getselection" title=dom-getSelection>getSelection</a>(); + // other browsing contexts + readonly attribute <a href="#window">Window</a> <a href="#frames" title=dom-frames>frames</a>; + 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="#top0" title=dom-top>top</a>; + 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); + <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url, in DOMString target, in DOMString features); + <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url, in DOMString target, in DOMString features, in DOMString replace); + // the user agent readonly attribute <a href="#clientinformation">ClientInformation</a> <a href="#navigator" title=dom-navigator>navigator</a>; <!-- XXX IE6 also has window.clientInformation pointing to this same object --> readonly attribute <a href="#storage0">Storage</a> <a href="#localstorage" title=dom-localStorage>localStorage</a>; @@ -31905,19 +31918,6 @@ void <a href="#shownotification" title=dom-showNotification>showNotification</a>(in DOMString title, in DOMString subtitle, in DOMString description); void <a href="#shownotification" title=dom-showNotification>showNotification</a>(in DOMString title, in DOMString subtitle, in DOMString description, in VoidCallback onclick); - // other browsing contexts - readonly attribute <a href="#window">Window</a> <a href="#frames" title=dom-frames>frames</a>; - 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="#top0" title=dom-top>top</a>; - 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); - <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url, in DOMString target, in DOMString features); - <a href="#window">Window</a> <a href="#open2" title=dom-open>open</a>(in DOMString url, in DOMString target, in DOMString features, in DOMString replace); - // <a href="#cross-document">cross-document messaging</a> void <a href="#postmessage0" title=dom-window-postMessage-2>postMessage</a>(in DOMString message, in DOMString targetOrigin); void <a href="#postmessage1" title=dom-window-postMessage-3>postMessage</a>(in DOMString message, in <a href="#messageport0">MessagePort</a> messagePort, in DOMString targetOrigin);
Received on Wednesday, 13 August 2008 00:21:22 UTC