workers/Overview.html 1.56 63 Rename Worker.close() to Worker.terminate

Rename Worker.close() to Worker.terminate(). (whatwg r63)

Worker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.56.html#worker1
2.6.2 Dedicated workers and the Worker interface
http://people.w3.org/mike/diffs/html5/workers/Overview.1.56.html#dedicated0
terminate()
http://people.w3.org/mike/diffs/html5/workers/Overview.1.56.html#terminate0

http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html
http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.55&r2=1.56&f=h
http://html5.org/tools/web-apps-tracker?from=62&to=63

===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- Overview.html 12 Nov 2008 23:10:04 -0000 1.55
+++ Overview.html 12 Nov 2008 23:36:26 -0000 1.56
@@ -1796,7 +1796,7 @@
   <pre class=idl>[NoInterfaceObject,
  <a href="#worker2" title=dom-Worker>Constructor</a>(in DOMString scriptURL)]
 interface <dfn id=worker1>Worker</dfn> : <a href="#abstractworker">AbstractWorker</a> {
-  void <a href="#close0" title=dom-Worker-close>close</a>();
+  void <a href="#terminate0" title=dom-Worker-terminate>terminate</a>();
 
   void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message);
   void <a href="#postmessage0" title=dom-Worker-postMessage>postMessage</a>(in DOMString message, in <span>MessagePort</span> messagePort);
@@ -1804,10 +1804,10 @@
            attribute <span>EventListener</span> <a href="#onmessage0" title=handler-Worker-onmessage>onmessage</a>;
 };</pre>
 
-  <p>The <dfn id=close0 title=dom-Worker-close><code>close()</code></dfn>
-   method, when invoked, must cause the "<a href="#terminate">terminate a
-   worker</a>" algorithm to be run on the worker with with the object is
-   associated.
+  <p>The <dfn id=terminate0
+   title=dom-Worker-terminate><code>terminate()</code></dfn> method, when
+   invoked, must cause the "<a href="#terminate">terminate a worker</a>"
+   algorithm to be run on the worker with with the object is associated.
 
   <p><code><a href="#worker1">Worker</a></code> objects act as if they had an
    implicit <code>MessagePort</code> associated with them. This port is part

Received on Wednesday, 12 November 2008 23:37:45 UTC