html5/spec Overview.html,1.1070,1.1071

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv10606

Modified Files:
	Overview.html 
Log Message:
Add 'load' and 'error' events to message ports. (whatwg r1882)

Index: Overview.html
===================================================================
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:04:13 UTC