- From: poot <cvsmail@w3.org>
- Date: Thu, 16 Jul 2009 10:04:51 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Clarify that only uncaught errors are reported. (whatwg r3423) http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.142&r2=1.143&f=h http://html5.org/tools/web-apps-tracker?from=3422&to=3423 =================================================================== RCS file: /sources/public/html5/workers/Overview.html,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- Overview.html 15 Jul 2009 22:03:56 -0000 1.142 +++ Overview.html 16 Jul 2009 01:04:31 -0000 1.143 @@ -174,7 +174,7 @@ <h1>Web Workers</h1> <!--ZZZ:--> <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>--> - <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 15 July 2009</h2> + <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 16 July 2009</h2> <!--:ZZZ--> <dl><!-- ZZZ: update the month/day (twice), (un)comment out <dt>This Version:</dt> @@ -242,7 +242,7 @@ specification's progress along the W3C Recommendation track. <!--ZZZ:--> <!--This specification is the 23 April 2009 Working Draft.--> - This specification is the 15 July 2009 Editor's Draft. + This specification is the 16 July 2009 Editor's Draft. <!--:ZZZ--> </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to specify a part of the Web @@ -1485,13 +1485,13 @@ entangled with.</li> </ol><hr><p>The <span>task source</span> for the tasks mentioned above is the - <span>DOM manipulation task source</span>.<h3 id="runtime-script-errors"><span class="secno">4.7 </span>Runtime script errors</h3><p>Whenever a runtime script error occurs in one of the worker's - scripts, if the error did not occur while handling a previous script - error, the user agent must <span>report the error</span> using the - <code><a href="#workerglobalscope">WorkerGlobalScope</a></code> object's <code title="handler-WorkerGlobalScope-onerror"><a href="#handler-workerglobalscope-onerror">onerror</a></code> - attribute.<p>For shared workers, if the error is still <i title="concept-error-nothandled">not handled</i> afterwards, or if + <span>DOM manipulation task source</span>.<h3 id="runtime-script-errors"><span class="secno">4.7 </span>Runtime script errors</h3><p>Whenever an uncaught runtime script error occurs in one of the + worker's scripts, if the error did not occur while handling a + previous script error, the user agent must <span>report the + error</span> using the <code><a href="#workerglobalscope">WorkerGlobalScope</a></code> object's <code title="handler-WorkerGlobalScope-onerror"><a href="#handler-workerglobalscope-onerror">onerror</a></code> + attribute. <a href="#references">[HTML5]</a><p>For shared workers, if the error is still <i title="concept-error-nothandled">not handled</i> afterwards, or if the error occurred while handling a previous script error, the error - should be reported to the user.<p>For dedicated workers, if the error is still <i title="concept-error-nothandled">not handled</i> afterwards, or if + should be reported to the user. <a href="#references">[HTML5]</a><p>For dedicated workers, if the error is still <i title="concept-error-nothandled">not handled</i> afterwards, or if the error occurred while handling a previous script error, the user agent must <span>queue a task</span> to <a href="#fire-a-worker-error-event">fire a worker error event</a> at the <code><a href="#worker">Worker</a></code> object associated with the
Received on Thursday, 16 July 2009 01:05:28 UTC