- From: CVS User ihickson <cvsmail@w3.org>
- Date: Wed, 30 Apr 2014 00:04:32 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/postmsg
In directory roscoe:/tmp/cvs-serv18872
Modified Files:
Overview.html
Log Message:
Instead of MessageEvent.channel, use MessageEvent.target.name. (whatwg r8589)
--- /sources/public/html5/postmsg/Overview.html 2014/04/23 17:05:21 1.169
+++ /sources/public/html5/postmsg/Overview.html 2014/04/30 00:04:32 1.170
@@ -216,7 +216,7 @@
<h1>HTML5 Web Messaging</h1>
- <h2 class="no-num no-toc" id="editor-s-draft-23-april-2014">Editor's Draft 23 April 2014</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-30-april-2014">Editor's Draft 30 April 2014</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/webmessaging/">http://www.w3.org/TR/webmessaging/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -348,7 +348,7 @@
</dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications
Working Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation track.
- This specification is the 23 April 2014 Editor's Draft.
+ This specification is the 30 April 2014 Editor's Draft.
</p>
@@ -493,7 +493,6 @@
readonly attribute any <a href="#dom-messageevent-data" title="dom-MessageEvent-data">data</a>;
readonly attribute DOMString <a href="#dom-messageevent-origin" title="dom-MessageEvent-origin">origin</a>;
readonly attribute DOMString <a href="#dom-messageevent-lasteventid" title="dom-MessageEvent-lastEventId">lastEventId</a>;
- readonly attribute DOMString <a href="#dom-messageevent-channel" title="dom-MessageEvent-channel">channel</a>;
readonly attribute (<span>WindowProxy</span> or <a href="#messageport">MessagePort</a>)? <a href="#dom-messageevent-source" title="dom-MessageEvent-source">source</a>;
readonly attribute <a href="#messageport">MessagePort</a>[]? <a href="#dom-messageevent-ports" title="dom-MessageEvent-ports">ports</a>;
};
@@ -533,14 +532,6 @@
</dd>
- <dt><var title="">event</var> . <code title="dom-MessageEvent-channel"><a href="#dom-messageevent-channel">channel</a></code></dt>
-
- <dd>
-
- <p>Returns the channel ID, for <span>broadcast channels</span>.</p>
-
- </dd>
-
<dt><var title="">event</var> . <code title="dom-MessageEvent-source"><a href="#dom-messageevent-source">source</a></code></dt>
<dd>
@@ -576,10 +567,6 @@
return the value it was initialized to. When the object is created, this attribute must be
initialized to the empty string. It represents, in <span>server-sent events</span>, the <span title="concept-event-stream-last-event-id">last event ID string</span> of the event source.</p>
- <p>The <dfn id="dom-messageevent-channel" title="dom-MessageEvent-channel"><code>channel</code></dfn> attribute must return the
- value it was initialized to. When the object is created, this attribute must be initialized to the
- empty string. It represents, in <span>broadcast channels</span>, the channel of the message.</p>
-
<p>The <dfn id="dom-messageevent-source" title="dom-MessageEvent-source"><code>source</code></dfn> attribute must return the
value it was initialized to. When the object is created, this attribute must be initialized to
null. It represents, in <a href="#web-messaging">cross-document messaging</a>, the <code>WindowProxy</code> of the
Received on Wednesday, 30 April 2014 00:04:34 UTC