[html5] r6196 - [giow] (0) Expose handlers for online and offline events in workers

whatwg at whatwg.org whatwg at whatwg.org
Wed Jun 8 15:06:01 PDT 2011


Author: ianh
Date: 2011-06-08 15:06:00 -0700 (Wed, 08 Jun 2011)
New Revision: 6196

Modified:
   complete.html
   source
Log:
[giow] (0) Expose handlers for online and offline events in workers

Modified: complete.html
===================================================================
--- complete.html	2011-06-08 00:41:51 UTC (rev 6195)
+++ complete.html	2011-06-08 22:06:00 UTC (rev 6196)
@@ -77019,6 +77019,8 @@
   void <a href=#dom-workerglobalscope-close title=dom-WorkerGlobalScope-close>close</a>();
 <!-- v2-onclose           attribute <span>Function</span> <span title="handler-WorkerGlobalScope-onclose">onclose</span>;
 -->           attribute <a href=#function>Function</a> <a href=#handler-workerglobalscope-onerror title=handler-WorkerGlobalScope-onerror>onerror</a>;
+           attribute <a href=#function>Function</a> <a href=#handler-workerglobalscope-onoffline title=handler-WorkerGlobalScope-onoffline>onoffline</a>;
+           attribute <a href=#function>Function</a> <a href=#handler-workerglobalscope-ononline title=handler-WorkerGlobalScope-ononline>ononline</a>;
 };
 <a href=#workerglobalscope>WorkerGlobalScope</a> implements <a href=#workerutils>WorkerUtils</a>;
 <a href=#workerglobalscope>WorkerGlobalScope</a> implements <a href=#eventtarget>EventTarget</a>;</pre>
@@ -77058,6 +77060,8 @@
 
   <table><thead><tr><th><a href=#event-handlers title="event handlers">Event handler</a> <th><a href=#event-handler-event-type>Event handler event type</a>
    <tbody><!-- v2-onclose    <tr><td><dfn title="handler-WorkerGlobalScope-onclose"><code>onclose</code></dfn> <td> <code title="event-close">close</code> --><tr><td><dfn id=handler-workerglobalscope-onerror title=handler-WorkerGlobalScope-onerror><code>onerror</code></dfn> <td> <code title=event-error>error</code>
+    <tr><td><dfn id=handler-workerglobalscope-onoffline title=handler-WorkerGlobalScope-onoffline><code>onoffline</code></dfn> <td> <code title=event-offline><a href=#event-offline>offline</a></code> <!-- new -->
+    <tr><td><dfn id=handler-workerglobalscope-ononline title=handler-WorkerGlobalScope-ononline><code>ononline</code></dfn> <td> <code title=event-online><a href=#event-online>online</a></code> <!-- new -->
   </table><hr><p>The <code><a href=#workerglobalscope>WorkerGlobalScope</a></code> interface must not exist if
   the interface's <span>relevant namespace object</span> is a
   <code><a href=#window>Window</a></code> object. <a href=#refsWEBIDL>[WEBIDL]</a></p>

Modified: source
===================================================================
--- source	2011-06-08 00:41:51 UTC (rev 6195)
+++ source	2011-06-08 22:06:00 UTC (rev 6196)
@@ -87354,6 +87354,8 @@
   void <span title="dom-WorkerGlobalScope-close">close</span>();
 <!-- v2-onclose           attribute <span>Function</span> <span title="handler-WorkerGlobalScope-onclose">onclose</span>;
 -->           attribute <span>Function</span> <span title="handler-WorkerGlobalScope-onerror">onerror</span>;
+           attribute <span>Function</span> <span title="handler-WorkerGlobalScope-onoffline">onoffline</span>;
+           attribute <span>Function</span> <span title="handler-WorkerGlobalScope-ononline">ononline</span>;
 };
 <span>WorkerGlobalScope</span> implements <span>WorkerUtils</span>;
 <span>WorkerGlobalScope</span> implements <span>EventTarget</span>;</pre>
@@ -87406,6 +87408,8 @@
    <tbody>
 <!-- v2-onclose    <tr><td><dfn title="handler-WorkerGlobalScope-onclose"><code>onclose</code></dfn> <td> <code title="event-close">close</code> -->
     <tr><td><dfn title="handler-WorkerGlobalScope-onerror"><code>onerror</code></dfn> <td> <code title="event-error">error</code>
+    <tr><td><dfn title="handler-WorkerGlobalScope-onoffline"><code>onoffline</code></dfn> <td> <code title="event-offline">offline</code> <!-- new -->
+    <tr><td><dfn title="handler-WorkerGlobalScope-ononline"><code>ononline</code></dfn> <td> <code title="event-online">online</code> <!-- new -->
   </table>
 
   <hr>




More information about the Commit-Watchers mailing list