- From: poot <cvsmail@w3.org>
- Date: Fri, 18 Jul 2008 18:50:27 +0900 (JST)
- To: public-html-diffs@w3.org
Move some APIs to Window so they are accessible in Workers. (whatwg r1889) (changed by: Ian Hickson) Diffs for this change per section: Window http://people.w3.org/mike/diffs/html5/spec/Overview.1.1078.html#window WindowBrowsingContext http://people.w3.org/mike/diffs/html5/spec/Overview.1.1078.html#windowbrowsingcontext Current content per affected section: http://dev.w3.org/html5/spec/Overview.html#window http://dev.w3.org/html5/spec/Overview.html#windowbrowsingcontext Previously published WD content per affected section: http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#window http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#windowbrowsingcontext Cumulative diff: http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1077&r2=1.1078&f=h http://html5.org/tools/web-apps-tracker?from=1888&to=1889 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1077 retrieving revision 1.1078 diff -u -d -r1.1077 -r1.1078 --- Overview.html 18 Jul 2008 09:20:35 -0000 1.1077 +++ Overview.html 18 Jul 2008 09:47:31 -0000 1.1078 @@ -30324,6 +30324,14 @@ // self-reference readonly attribute <a href="#window">Window</a> <a href="#window0" title=dom-window>window</a>; readonly attribute <a href="#window">Window</a> <a href="#self" title=dom-self>self</a>; + + // the user agent + readonly attribute <a href="#storage0">Storage</a> <a href="#localstorage" title=dom-localStorage>localStorage</a>; + <a href="#database0">Database</a> <a href="#opendatabase" title=dom-opendatabase>openDatabase</a>(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize); + + // user prompts + 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); }; [NoInterfaceObject] interface <dfn id=windowbrowsingcontext>WindowBrowsingContext</dfn> { @@ -30337,8 +30345,6 @@ // 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="#sessionstorage" title=dom-sessionStorage>sessionStorage</a>; - readonly attribute <a href="#storage0">Storage</a> <a href="#localstorage" title=dom-localStorage>localStorage</a>; - <a href="#database0">Database</a> <a href="#opendatabase" title=dom-opendatabase>openDatabase</a>(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize); // user prompts void <a href="#alert" title=dom-alert>alert</a>(in DOMString message); @@ -30349,8 +30355,6 @@ any <a href="#showmodaldialog" title=dom-showModalDialog>showModalDialog</a>(in DOMString url); any <a href="#showmodaldialog" title=dom-showModalDialog>showModalDialog</a>(in DOMString url, in any arguments);<!-- any <span title="dom-showModalDialog">showModalDialog</span>(in DOMString url, in any arguments, in DOMString features);--> - 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>;
Received on Friday, 18 July 2008 09:51:05 UTC