- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 26 Jun 2009 08:43:05 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv26949
Modified Files:
Overview.html
Log Message:
Move openDatabase(), localStorage, and sessionStorage from HTML5 to Web Storage. Make it clearer where constructors are supposed to be visible. (whatwg r3325)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2464
retrieving revision 1.2465
diff -u -d -r1.2464 -r1.2465
--- Overview.html 26 Jun 2009 08:32:30 -0000 1.2464
+++ Overview.html 26 Jun 2009 08:43:02 -0000 1.2465
@@ -40701,9 +40701,6 @@
// the user agent
readonly attribute <a href="#navigator">Navigator</a> <a href="#dom-navigator" title="dom-navigator">navigator</a>; <!-- IE also has window.clientInformation === window.navigator -->
- readonly attribute <span>Storage</span> <span title="dom-localStorage">localStorage</span>;
- readonly attribute <span>Storage</span> <span title="dom-sessionStorage">sessionStorage</span>;
- <span>Database</span> <span title="dom-opendatabase">openDatabase</span>(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize);
readonly attribute <a href="#applicationcache">ApplicationCache</a> <a href="#dom-applicationcache" title="dom-applicationCache">applicationCache</a>;
// user prompts
@@ -51444,7 +51441,11 @@
<li><p>Return <var title="">channel</var>.</li>
- </ol><p>The <dfn id="dom-channel-port1" title="dom-channel-port1"><code>port1</code></dfn> and
+ </ol><p>This constructor must be visible when the <span>script's global
+ scope</span> is either a <code><a href="#window">Window</a></code> object or an object
+ implementing the <code>WorkerUtils interface.</code></p>
+
+ <p>The <dfn id="dom-channel-port1" title="dom-channel-port1"><code>port1</code></dfn> and
<dfn id="dom-channel-port2" title="dom-channel-port2"><code>port2</code></dfn> attributes
must return the values they were assigned when the
<code><a href="#messagechannel">MessageChannel</a></code> object was created.</p>
Received on Friday, 26 June 2009 08:43:20 UTC