- From: poot <cvsmail@w3.org>
- Date: Wed, 16 Jul 2008 10:47:12 +0900 (JST)
- To: public-html-diffs@w3.org
WindowWorkerCreators IDL (whatwg r7) (changed by: Ian Hickson) Diffs for this change per section: 3. Creating workers http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#creating WindowWorkerCreators http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#windowworkercreators 3.1 The WindowWorkerCreators interface http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#the-windowworkercreators kill a worker http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#kill-a References http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#references WindowWorker http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#windowworker closing http://people.w3.org/mike/diffs/html5/workers/Overview.1.5.html#closing Current content per affected section: http://dev.w3.org/html5/workers/Overview.html#creating http://dev.w3.org/html5/workers/Overview.html#windowworkercreators http://dev.w3.org/html5/workers/Overview.html#the-windowworkercreators http://dev.w3.org/html5/workers/Overview.html#kill-a http://dev.w3.org/html5/workers/Overview.html#references http://dev.w3.org/html5/workers/Overview.html#windowworker http://dev.w3.org/html5/workers/Overview.html#closing Previously published WD content per affected section: http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#creating http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#windowworkercreators http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#the-windowworkercreators http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#kill-a http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#references http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#windowworker http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#closing Cumulative diff: http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.4&r2=1.5&f=h http://html5.org/tools/web-apps-tracker?from=6&to=7 =================================================================== RCS file: /sources/public/html5/workers/Overview.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Overview.html 16 Jul 2008 01:39:59 -0000 1.4 +++ Overview.html 16 Jul 2008 01:46:20 -0000 1.5 @@ -209,6 +209,10 @@ </ul> <li><a href="#creating"><span class=secno>3. </span>Creating workers</a> + <ul class=toc> + <li><a href="#the-windowworkercreators"><span class=secno>3.1 </span>The + <code>WindowWorkerCreators</code> interface</a> + </ul> <li class=no-num><a href="#references">References</a> @@ -378,8 +382,9 @@ <p>Objects that implement the <code><a href="#windowworker">WindowWorker</a></code> interface must also implement the <code>Window</code> interface (and thus also the - <code>WindowTimers</code> interface) and the <code>EventTarget</code> - interface. + <code>WindowTimers</code> and <code><a + href="#windowworkercreators">WindowWorkerCreators</a></code> interfaces) + and the <code>EventTarget</code> interface. <p>The <dfn id=closing title=dom-windowworker-closing><code>closing</code></dfn> attribute must @@ -489,6 +494,19 @@ <h2 id=creating><span class=secno>3. </span>Creating workers</h2> + <h3 id=the-windowworkercreators><span class=secno>3.1 </span>The <code><a + href="#windowworkercreators">WindowWorkerCreators</a></code> interface</h3> + + <pre + class=idl>[NoInterfaceObject] interface <dfn id=windowworkercreators>WindowWorkerCreators</dfn> { + <span>MessagePort</span> <span title=dom-WindowWorkerCreators-createWorker>createWorker</span>(in DOMString scriptURI); + <span>MessagePort</span> <span title=dom-WindowWorkerCreators-createNamedWorker>createNamedWorker</span>(in DOMString name, in DOMString scriptURI); +};</pre> + + <p>Objects that implement the <code>Window</code> interface must also + implement the <code><a + href="#windowworkercreators">WindowWorkerCreators</a></code> interface. + <p class=big-issue>... <h2 class=no-num id=references>References</h2>
Received on Wednesday, 16 July 2008 01:47:53 UTC