- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 06 Oct 2012 18:04:43 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/postmsg
In directory hutz:/tmp/cvs-serv22545
Modified Files:
Overview.html
Log Message:
Define when events are trusted and when they're not. Hopefully I got all the places that create and dispatch events... (whatwg r7437)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/postmsg/Overview.html,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -d -r1.123 -r1.124
--- Overview.html 17 Sep 2012 03:06:03 -0000 1.123
+++ Overview.html 6 Oct 2012 18:04:41 -0000 1.124
@@ -216,7 +216,7 @@
<h1>HTML5 Web Messaging</h1>
- <h2 class="no-num no-toc" id="editor-s-draft-17-september-2012">Editor's Draft 17 September 2012</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-6-october-2012">Editor's Draft 6 October 2012</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>
@@ -350,7 +350,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 17 September 2012 Editor's Draft.
+ This specification is the 6 October 2012 Editor's Draft.
</p>
@@ -892,17 +892,12 @@
<li>
- <p>Create an event that uses the <code><a href="#messageevent">MessageEvent</a></code>
- interface, with the event type <code title="event-message"><a href="#event-message">message</a></code>, which does not bubble, is
- not cancelable, and has no default action. The <code title="dom-MessageEvent-data"><a href="#dom-messageevent-data">data</a></code> attribute must be
- initialized to the value of <var title="">message clone</var>, the
- <code title="dom-MessageEvent-origin"><a href="#dom-messageevent-origin">origin</a></code> attribute must
- be initialized to the <span title="Unicode serialization of an
- origin">Unicode serialization</span> of the <span>origin</span> of
- the script that invoked the method, the <code title="dom-MessageEvent-source"><a href="#dom-messageevent-source">source</a></code> attribute must be
- initialized to the <span>script's global object</span>'s
- <code>WindowProxy</code> object, and the <code title="dom-MessageEvent-ports"><a href="#dom-messageevent-ports">ports</a></code> attribute must be
- initialized to the <var title="">new ports</var> array.
+ <p>Create a <span title="concept-events-trusted">trusted</span> event that uses the
+ <code><a href="#messageevent">MessageEvent</a></code> interface, with the event type <code title="event-message"><a href="#event-message">message</a></code>, which does not bubble, is not cancelable, and has no
+ default action. The <code title="dom-MessageEvent-data"><a href="#dom-messageevent-data">data</a></code> attribute must be
+ initialized to the value of <var title="">message clone</var>, the <code title="dom-MessageEvent-origin"><a href="#dom-messageevent-origin">origin</a></code> attribute must be initialized to the <span title="Unicode serialization of an origin">Unicode serialization</span> of the
+ <span>origin</span> of the script that invoked the method, the <code title="dom-MessageEvent-source"><a href="#dom-messageevent-source">source</a></code> attribute must be initialized to the
+ <span>script's global object</span>'s <code>WindowProxy</code> object, and the <code title="dom-MessageEvent-ports"><a href="#dom-messageevent-ports">ports</a></code> attribute must be initialized to the <var title="">new ports</var> array.
<a href="#refsHTML">[HTML]</a>
Received on Saturday, 6 October 2012 18:04:44 UTC