- From: CVS User ihickson <cvsmail@w3.org>
- Date: Thu, 30 Jan 2014 02:41:51 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/postmsg
In directory roscoe:/tmp/cvs-serv1882
Modified Files:
Overview.html
Log Message:
Ok, go back to exposing MessageEvent.source in one form everywhere, relying on WebIDL for the rest of the logic here (whatwg r8444)
--- /sources/public/html5/postmsg/Overview.html 2014/01/28 20:34:30 1.165
+++ /sources/public/html5/postmsg/Overview.html 2014/01/30 02:41:51 1.166
@@ -216,7 +216,7 @@
<h1>HTML5 Web Messaging</h1>
- <h2 class="no-num no-toc" id="editor-s-draft-28-january-2014">Editor's Draft 28 January 2014</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-30-january-2014">Editor's Draft 30 January 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 28 January 2014 Editor's Draft.
+ This specification is the 30 January 2014 Editor's Draft.
</p>
@@ -494,19 +494,10 @@
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>;
};
-[Exposed=Window]
-partial interface <a href="#messageevent">MessageEvent</a> {
- readonly attribute (<span>WindowProxy</span> or <a href="#messageport">MessagePort</a>)? <a href="#dom-messageevent-source" title="dom-MessageEvent-source">source</a>;
-}
-
-[Exposed=Worker]
-partial interface <a href="#messageevent">MessageEvent</a> {
- readonly attribute <a href="#messageport">MessagePort</a>? <a href="#dom-messageevent-source" title="dom-MessageEvent-source">source</a>;
-}
-
dictionary <dfn id="messageeventinit">MessageEventInit</dfn> : <span>EventInit</span> {
any data;
DOMString origin;
Received on Thursday, 30 January 2014 02:41:53 UTC