- From: poot <cvsmail@w3.org>
- Date: Thu, 17 Jul 2008 05:06:53 +0900 (JST)
- To: public-html-diffs@w3.org
Add 'load' and 'error' events to message ports. (whatwg r1882) (changed by: Ian Hickson) Diffs for this change per section: onerror http://people.w3.org/mike/diffs/html5/spec/Overview.1.1071.html#onerror1 onload http://people.w3.org/mike/diffs/html5/spec/Overview.1.1071.html#onload0 onmessage http://people.w3.org/mike/diffs/html5/spec/Overview.1.1071.html#onmessage1 MessagePort http://people.w3.org/mike/diffs/html5/spec/Overview.1.1071.html#messageport0 onunload http://people.w3.org/mike/diffs/html5/spec/Overview.1.1071.html#onunload0 Current content per affected section: http://dev.w3.org/html5/spec/Overview.html#onerror1 http://dev.w3.org/html5/spec/Overview.html#onload0 http://dev.w3.org/html5/spec/Overview.html#onmessage1 http://dev.w3.org/html5/spec/Overview.html#messageport0 http://dev.w3.org/html5/spec/Overview.html#onunload0 Previously published WD content per affected section: http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onerror1 http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onload0 http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onmessage1 http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#messageport0 http://www.w3.org/TR/2008/WD-html5-20080610/single-page/#onunload0 Cumulative diff: http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1070&r2=1.1071&f=h http://html5.org/tools/web-apps-tracker?from=1881&to=1882 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1070 retrieving revision 1.1071 diff -u -d -r1.1070 -r1.1071 --- Overview.html 15 Jul 2008 20:43:06 -0000 1.1070 +++ Overview.html 16 Jul 2008 20:03:37 -0000 1.1071 @@ -19,7 +19,7 @@ for HTML and XHTML</h2> <h2 class="no-num no-toc" id=editors0><!-- "W3C Working Draft" --> - Editor's Draft <!--ZZZ-->15 July 2008</h2> + Editor's Draft <!--ZZZ-->16 July 2008</h2> <dl><!-- ZZZ: update the month/day <dt>This Version:</dt> @@ -167,7 +167,7 @@ <p>The W3C <a href="http://www.w3.org/html/wg/">HTML Working Group</a> is the W3C working group responsible for this specification's progress along - the W3C Recommendation track. <!--ZZZ:--> This specification is the 15 + the W3C Recommendation track. <!--ZZZ:--> This specification is the 16 July 2008 <!--ZZZ "Working Draft"-->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) --> @@ -42604,6 +42604,8 @@ // event handler attributes attribute <span>EventListener</span> <a href="#onmessage1" title=handler-MessagePort-onmessage>onmessage</a>; + attribute <span>EventListener</span> <a href="#onload0" title=handler-MessagePort-onload>onload</a>; + attribute <span>EventListener</span> <a href="#onerror1" title=handler-MessagePort-onerror>onerror</a>; attribute <span>EventListener</span> <a href="#onunload0" title=handler-MessagePort-onunload>onunload</a>; };</pre> @@ -42866,6 +42868,22 @@ bubbles through the <code><a href="#messageport0">MessagePort</a></code> object. + <dt><dfn id=onload0 + title=handler-MessagePort-onload><code>onload</code></dfn> + + <dd> + <p>Must be invoked whenever a <code title=event-load><a + href="#load0">load</a></code> event is targeted at or bubbles through + the <code><a href="#messageport0">MessagePort</a></code> object. + + <dt><dfn id=onerror1 + title=handler-MessagePort-onerror><code>onerror</code></dfn> + + <dd> + <p>Must be invoked whenever an <code title=event-error><a + href="#error1">error</a></code> event is targeted at or bubbles through + the <code><a href="#messageport0">MessagePort</a></code> object. + <dt><dfn id=onunload0 title=handler-MessagePort-onunload><code>onunload</code></dfn> @@ -42875,8 +42893,10 @@ href="#messageport0">MessagePort</a></code> object. </dl> - <p class=note>Nothing in this specification causes an <code - title=event-unload>unload</code> event to be targetted at a <code><a + <p class=note>Nothing in this specification causes any <code + title=event-load><a href="#load0">load</a></code>, <code + title=event-error><a href="#error1">error</a></code>, or <code + title=event-unload>unload</code> events to be targetted at a <code><a href="#messageport0">MessagePort</a></code> object. This feature is intended for use with Workers. <a href="#references">[WORKERS]</a>
Received on Wednesday, 16 July 2008 20:07:30 UTC