- From: poot <cvsmail@w3.org>
- Date: Fri, 18 Jul 2008 17:11:42 +0900 (JST)
- To: public-html-diffs@w3.org
Add some APIs. (whatwg r16) (changed by: Ian Hickson)
Diffs for this change per section:
3. APIs available to workers
http://people.w3.org/mike/diffs/html5/workers/Overview.1.13.html#apis-available
References
http://people.w3.org/mike/diffs/html5/workers/Overview.1.13.html#references
Current content per affected section:
http://dev.w3.org/html5/workers/Overview.html#apis-available
http://dev.w3.org/html5/workers/Overview.html#references
Previously published WD content per affected section:
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#apis-available
http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#references
Cumulative diff: http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html
http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.12&r2=1.13&f=h
http://html5.org/tools/web-apps-tracker?from=15&to=16
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Overview.html 18 Jul 2008 01:25:20 -0000 1.12
+++ Overview.html 18 Jul 2008 08:10:42 -0000 1.13
@@ -894,6 +894,36 @@
<li>The <code>EventTarget</code> interface.
</ul>
+ <p>There must be no interface objects and constructors available in the
+ global scope of scripts whose <span>script execution context</span> is a
+ <code><a href="#windowworker">WindowWorker</a></code> object except for
+ the following:
+
+ <ul>
+ <li>
+ <p><code>XMLHttpRequest</code> and all interface objects and constructors
+ defined by the XMLHttpRequest specifications, except that the
+ <span>document response entity body</span> must always be null. <a
+ href="#refsXHR">[XHR]</a>
+
+ <li>
+ <p>The <code>WebSocket</code> interface object and constructor.
+
+ <li>
+ <p>The <code>MessageChannel</code> interface object and constructor.
+ </li>
+ <!-- XXX showNotification() -->
+ <!-- XXX ApplicationCache -->
+ <!-- XXX globalStorage -->
+ <!-- XXX openDatabase() -->
+ <!-- XXX a way to set cookies on the URL for the script -->
+ <!-- XXX the navigator object, for UA sniffing (?) -->
+ <!-- XXX
+ void include(in DOMString url);
+ void log(in DOMString s); // log to console
+-->
+ </ul>
+
<h2 class=no-num id=references>References</h2>
<p class=big-issue>This section will be written in a future
Received on Friday, 18 July 2008 08:12:19 UTC