- From: CVS User ihickson <cvsmail@w3.org>
- Date: Wed, 24 Jul 2013 18:50:57 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers In directory roscoe:/tmp/cvs-serv26987 Modified Files: Overview.html Log Message: New argument to onerror: the Error object itself. (whatwg r8086) --- /sources/public/html5/workers/Overview.html 2013/07/24 17:53:36 1.388 +++ /sources/public/html5/workers/Overview.html 2013/07/24 18:50:57 1.389 @@ -1760,8 +1760,10 @@ handled</i> afterwards, the user agent must <span>queue a task</span> to <span title="concept-event-fire">fire</span> a <span title="concept-events-trusted">trusted</span> event that uses the <code>ErrorEvent</code> interface, with the name <code title="event-error">error</code>, that doesn't bubble and is - cancelable, with its <code title="dom-ErrorEvent-message">message</code>, <code title="dom-ErrorEvent-filename">filename</code>, <code title="dom-ErrorEvent-lineno">lineno</code>, and <code title="dom-ErrorEvent-column">column</code> - attributes initialized appropriately, at the <code><a href="#worker">Worker</a></code> object associated with the + cancelable, with its <code title="dom-ErrorEvent-message">message</code>, <code title="dom-ErrorEvent-filename">filename</code>, <code title="dom-ErrorEvent-lineno">lineno</code>, <code title="dom-ErrorEvent-column">column</code>, + attributes initialized appropriately, + and with the <code title="dom-ErrorEvent-error">error</code> attribute initialized to null, + at the <code><a href="#worker">Worker</a></code> object associated with the worker. If the event is not canceled, the user agent must act as if the uncaught runtime script error had occurred in the global scope that the <code><a href="#worker">Worker</a></code> object is in, thus repeating the entire runtime script error reporting process one level up.</p>
Received on Wednesday, 24 July 2013 18:50:58 UTC