Skip to content

Commit

Permalink
[e] (0) id update for request from anne
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@5091 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 11, 2010
1 parent 9201012 commit 90545b4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
22 changes: 11 additions & 11 deletions complete.html
Expand Up @@ -1059,7 +1059,7 @@ <h2 class="no-num no-toc" id=contents>Table of contents</h2>
<li><a href=#sec-websocket-origin><span class=secno>10.3.4.7.6 </span><code>Sec-WebSocket-Origin</code></a></li>
<li><a href=#sec-websocket-protocol><span class=secno>10.3.4.7.7 </span><code>Sec-WebSocket-Protocol</code></a></ol></li>
<li><a href=#using-the-websocket-protocol-from-other-specifications><span class=secno>10.3.4.8 </span>Using the WebSocket protocol from other specifications</a></ol></ol></li>
<li><a href=#crossDocumentMessages><span class=secno>10.4 </span>Cross-document messaging</a>
<li><a href=#web-messaging><span class=secno>10.4 </span>Cross-document messaging</a>
<ol>
<li><a href=#introduction-8><span class=secno>10.4.1 </span>Introduction</a></li>
<li><a href=#security-postmsg><span class=secno>10.4.2 </span>Security</a>
Expand Down Expand Up @@ -54758,7 +54758,7 @@ <h3 id=the-window-object><span class=secno>6.2 </span>The <code><a href=#window>
void <a href=#dom-print title=dom-print>print</a>();
any <a href=#dom-showmodaldialog title=dom-showModalDialog>showModalDialog</a>(in DOMString url, in optional any argument<!--, in optional DOMString features-->);

// <a href=#crossDocumentMessages>cross-document messaging</a>
// <a href=#web-messaging>cross-document messaging</a>
void <a href=#dom-window-postmessage title=dom-window-postMessage>postMessage</a>(in any message, in DOMString targetOrigin, in optional <a href=#messageportarray>MessagePortArray</a> ports);

// <a href=#event-handler-idl-attributes>event handler IDL attributes</a>
Expand Down Expand Up @@ -68493,7 +68493,7 @@ <h2 id=comms><span class=secno>10 </span>Communication</h2>
<h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>

<p>Messages in <a href=#server-sent-events>server-sent events</a>, <a href=#network>Web
sockets</a>, <a href=#crossDocumentMessages>cross-document messaging</a>, and
sockets</a>, <a href=#web-messaging>cross-document messaging</a>, and
<a href=#channel-messaging>channel messaging</a> use the <dfn id=event-message title=event-message><code>message</code></dfn> event.
</p>

Expand Down Expand Up @@ -68521,7 +68521,7 @@ <h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>
<dd>

<p>Returns the origin of the message, for <a href=#server-sent-events>server-sent
events</a> and <a href=#crossDocumentMessages>cross-document messaging</a>.</p>
events</a> and <a href=#web-messaging>cross-document messaging</a>.</p>

</dd>

Expand All @@ -68539,7 +68539,7 @@ <h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>
<dd>

<p>Returns the <code><a href=#windowproxy>WindowProxy</a></code> of the source window, for
<a href=#crossDocumentMessages>cross-document messaging</a>.</p>
<a href=#web-messaging>cross-document messaging</a>.</p>

</dd>

Expand All @@ -68548,7 +68548,7 @@ <h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>
<dd>

<p>Returns the <code><a href=#messageportarray>MessagePortArray</a></code> sent with the
message, for <a href=#crossDocumentMessages>cross-document messaging</a> and
message, for <a href=#web-messaging>cross-document messaging</a> and
<a href=#channel-messaging>channel messaging</a>.</p>

</dd>
Expand All @@ -68564,7 +68564,7 @@ <h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>

<p>The <dfn id=dom-messageevent-origin title=dom-MessageEvent-origin><code>origin</code></dfn> attribute
represents, in <a href=#server-sent-events>server-sent events</a> and
<a href=#crossDocumentMessages>cross-document messaging</a>, the <a href=#origin>origin</a> of
<a href=#web-messaging>cross-document messaging</a>, the <a href=#origin>origin</a> of
the document that sent the message (typically the scheme, hostname,
and port of the document, but not its path or fragment
identifier).</p>
Expand All @@ -68574,12 +68574,12 @@ <h3 id=event-definitions-0><span class=secno>10.1 </span>Event definitions</h3>
string</a> of the event source.</p>

<p>The <dfn id=dom-messageevent-source title=dom-MessageEvent-source><code>source</code></dfn> attribute
represents, in <a href=#crossDocumentMessages>cross-document messaging</a>, the
represents, in <a href=#web-messaging>cross-document messaging</a>, the
<code><a href=#windowproxy>WindowProxy</a></code> of the <a href=#browsing-context>browsing context</a> of the
<code><a href=#window>Window</a></code> object from which the message came.</p>

<p>The <dfn id=dom-messageevent-ports title=dom-MessageEvent-ports><code>ports</code></dfn>
attribute represents, in <a href=#crossDocumentMessages>cross-document messaging</a> and
attribute represents, in <a href=#web-messaging>cross-document messaging</a> and
<a href=#channel-messaging>channel messaging</a> the <code><a href=#messageportarray>MessagePortArray</a></code>
being sent, if any.</p>

Expand Down Expand Up @@ -72425,7 +72425,7 @@ <h5 id=using-the-websocket-protocol-from-other-specifications><span class=secno>



<h3 id=crossDocumentMessages><span class=secno>10.4 </span><dfn>Cross-document messaging</dfn></h3>
<h3 id=web-messaging><span class=secno>10.4 </span><dfn id=crossDocumentMessages>Cross-document messaging</dfn></h3>

<p>Web browsers, for security and privacy reasons, prevent documents
in different domains from affecting each other; that is, cross-site
Expand All @@ -72440,7 +72440,7 @@ <h3 id=crossDocumentMessages><span class=secno>10.4 </span><dfn>Cross-document m

<div class=impl>

<p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> in <a href=#crossDocumentMessages>cross-document
<p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> in <a href=#web-messaging>cross-document
messaging</a> is the <dfn id=posted-message-task-source>posted message task source</dfn>.</p>

</div>
Expand Down
22 changes: 11 additions & 11 deletions index
Expand Up @@ -951,7 +951,7 @@
<li><a href=#comms><span class=secno>9 </span>Communication</a>
<ol>
<li><a href=#event-definitions-0><span class=secno>9.1 </span>Event definitions</a></li>
<li><a href=#crossDocumentMessages><span class=secno>9.2 </span>Cross-document messaging</a>
<li><a href=#web-messaging><span class=secno>9.2 </span>Cross-document messaging</a>
<ol>
<li><a href=#introduction-6><span class=secno>9.2.1 </span>Introduction</a></li>
<li><a href=#security-postmsg><span class=secno>9.2.2 </span>Security</a>
Expand Down Expand Up @@ -54657,7 +54657,7 @@ interface <dfn id=window>Window</dfn> {
void <a href=#dom-print title=dom-print>print</a>();
any <a href=#dom-showmodaldialog title=dom-showModalDialog>showModalDialog</a>(in DOMString url, in optional any argument<!--, in optional DOMString features-->);

// <a href=#crossDocumentMessages>cross-document messaging</a>
// <a href=#web-messaging>cross-document messaging</a>
void <a href=#dom-window-postmessage title=dom-window-postMessage>postMessage</a>(in any message, in DOMString targetOrigin, in optional <a href=#messageportarray>MessagePortArray</a> ports);

// <a href=#event-handler-idl-attributes>event handler IDL attributes</a>
Expand Down Expand Up @@ -66246,7 +66246,7 @@ v2 (well, really v0):
<h3 id=event-definitions-0><span class=secno>9.1 </span>Event definitions</h3>

<p>Messages in <span>server-sent events</span>, <span>Web
sockets</span>, <a href=#crossDocumentMessages>cross-document messaging</a>, and
sockets</span>, <a href=#web-messaging>cross-document messaging</a>, and
<a href=#channel-messaging>channel messaging</a> use the <dfn id=event-message title=event-message><code>message</code></dfn> event.

<a href=#refsEVENTSOURCE>[EVENTSOURCE]</a>
Expand Down Expand Up @@ -66278,7 +66278,7 @@ v2 (well, really v0):
<dd>

<p>Returns the origin of the message, for <span>server-sent
events</span> and <a href=#crossDocumentMessages>cross-document messaging</a>.</p>
events</span> and <a href=#web-messaging>cross-document messaging</a>.</p>

</dd>

Expand All @@ -66296,7 +66296,7 @@ v2 (well, really v0):
<dd>

<p>Returns the <code><a href=#windowproxy>WindowProxy</a></code> of the source window, for
<a href=#crossDocumentMessages>cross-document messaging</a>.</p>
<a href=#web-messaging>cross-document messaging</a>.</p>

</dd>

Expand All @@ -66305,7 +66305,7 @@ v2 (well, really v0):
<dd>

<p>Returns the <code><a href=#messageportarray>MessagePortArray</a></code> sent with the
message, for <a href=#crossDocumentMessages>cross-document messaging</a> and
message, for <a href=#web-messaging>cross-document messaging</a> and
<a href=#channel-messaging>channel messaging</a>.</p>

</dd>
Expand All @@ -66321,7 +66321,7 @@ v2 (well, really v0):

<p>The <dfn id=dom-messageevent-origin title=dom-MessageEvent-origin><code>origin</code></dfn> attribute
represents, in <span>server-sent events</span> and
<a href=#crossDocumentMessages>cross-document messaging</a>, the <a href=#origin>origin</a> of
<a href=#web-messaging>cross-document messaging</a>, the <a href=#origin>origin</a> of
the document that sent the message (typically the scheme, hostname,
and port of the document, but not its path or fragment
identifier).</p>
Expand All @@ -66331,12 +66331,12 @@ v2 (well, really v0):
string</span> of the event source.</p>

<p>The <dfn id=dom-messageevent-source title=dom-MessageEvent-source><code>source</code></dfn> attribute
represents, in <a href=#crossDocumentMessages>cross-document messaging</a>, the
represents, in <a href=#web-messaging>cross-document messaging</a>, the
<code><a href=#windowproxy>WindowProxy</a></code> of the <a href=#browsing-context>browsing context</a> of the
<code><a href=#window>Window</a></code> object from which the message came.</p>

<p>The <dfn id=dom-messageevent-ports title=dom-MessageEvent-ports><code>ports</code></dfn>
attribute represents, in <a href=#crossDocumentMessages>cross-document messaging</a> and
attribute represents, in <a href=#web-messaging>cross-document messaging</a> and
<a href=#channel-messaging>channel messaging</a> the <code><a href=#messageportarray>MessagePortArray</a></code>
being sent, if any.</p>

Expand All @@ -66360,7 +66360,7 @@ v2 (well, really v0):



<h3 id=crossDocumentMessages><span class=secno>9.2 </span><dfn>Cross-document messaging</dfn></h3>
<h3 id=web-messaging><span class=secno>9.2 </span><dfn id=crossDocumentMessages>Cross-document messaging</dfn></h3>

<p>Web browsers, for security and privacy reasons, prevent documents
in different domains from affecting each other; that is, cross-site
Expand All @@ -66375,7 +66375,7 @@ v2 (well, really v0):

<div class=impl>

<p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> in <a href=#crossDocumentMessages>cross-document
<p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> in <a href=#web-messaging>cross-document
messaging</a> is the <dfn id=posted-message-task-source>posted message task source</dfn>.</p>

</div>
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -81364,7 +81364,7 @@ WjN}|M(6</pre>

<!--START postmsg-->

<h3 id="crossDocumentMessages"><dfn>Cross-document messaging</dfn></h3>
<h3 id="web-messaging"><dfn id="crossDocumentMessages">Cross-document messaging</dfn></h3>

<p>Web browsers, for security and privacy reasons, prevent documents
in different domains from affecting each other; that is, cross-site
Expand Down

0 comments on commit 90545b4

Please sign in to comment.