- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 19 Sep 2009 21:08:41 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/eventsource
In directory hutz:/tmp/cvs-serv3680
Modified Files:
Overview.html
Log Message:
Move 'implements' requirements to IDL. (whatwg r3910)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/eventsource/Overview.html,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- Overview.html 18 Sep 2009 08:54:52 -0000 1.69
+++ Overview.html 19 Sep 2009 21:08:39 -0000 1.70
@@ -169,7 +169,7 @@
<h1>Server-Sent Events</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-18-september-2009">Editor's Draft 18 September 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-19-september-2009">Editor's Draft 19 September 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out
<dt>This Version:</dt>
@@ -235,7 +235,7 @@
specification's progress along the W3C Recommendation track.
<!--ZZZ:-->
<!-- This specification is the 23 April 2009 Working Draft. -->
- This specification is the 18 September 2009 Editor's Draft.
+ This specification is the 19 September 2009 Editor's Draft.
<!--:ZZZ-->
</p><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/42538/status" rel="disclosure">public list of
@@ -338,8 +338,8 @@
attribute <span>Function</span> <a href="#handler-eventsource-onmessage" title="handler-EventSource-onmessage">onmessage</a>;
attribute <span>Function</span> <a href="#handler-eventsource-onerror" title="handler-EventSource-onerror">onerror</a>;
void <a href="#dom-eventsource-close" title="dom-EventSource-close">close</a>();
-};</pre><p><code><a href="#eventsource">EventSource</a></code> objects must also implement the
- <code>EventTarget</code> interface. <a href="#refsDOMEVENTS">[DOMEVENTS]</a><p>The <dfn id="dom-eventsource" title="dom-EventSource"><code>EventSource(<var title="">url</var>)</code></dfn> constructor takes one argument,
+};
+<a href="#eventsource">EventSource</a> implements <span>EventTarget</span>;</pre><p>The <dfn id="dom-eventsource" title="dom-EventSource"><code>EventSource(<var title="">url</var>)</code></dfn> constructor takes one argument,
<var title="">url</var>, which specifies the <span>URL</span> to
which to connect. When the <code>EventSource()</code> constructor is
invoked, the UA must run these steps:<ol><li><p><span title="resolve a url">Resolve</span> the
@@ -845,18 +845,6 @@
DOM Core</a></cite>, S. Pieters. W3C, June 2009.</dd>
-->
- <dt id="refsDOMEVENTS">[DOMEVENTS]</dt>
- <!--
- <dd><cite><a
- href="http://www.w3.org/TR/DOM-Level-3-Events/">Document Object
- Model (DOM) Level 3 Events Specification</a></cite>,
- B. Höhrmann, P. Le Hegaret, T. Pixley. W3C, December
- 2007.</dd>
- -->
- <dd><cite><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html">Document
- Object Model (DOM) Level 3 Events Specification</a></cite>,
- D. Schepers. W3C, July 2009.</dd>
-
<dt id="refsHTML5">[HTML5]</dt>
<!--
<dd><cite><a href="http://www.w3.org/TR/html5/">HTML5</a></cite>,
Received on Saturday, 19 September 2009 21:08:50 UTC