Skip to content

Commit

Permalink
[e] (0) Fix example.
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=18702
Affected topics: DOM APIs

git-svn-id: http://svn.whatwg.org/webapps@7818 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 12, 2013
1 parent 25735a1 commit 9f8f933
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions complete.html
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 11 April 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 12 April 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -81898,9 +81898,9 @@ <h4 id=introduction-11><span class=secno>10.5.1 </span>Introduction</h4>
}</pre>

<p>Data sent on a port can be structured data; for example here an
array of strings is passed:</p>
array of strings is passed on a <code><a href=#messageport>MessagePort</a></code>:</p>

<pre>port1.postMessage(['hello', 'world'], 'http://example.com');</pre>
<pre>port1.postMessage(['hello', 'world']);</pre>


<h5 id=examples-5><span class=secno>10.5.1.1 </span>Examples</h5>
Expand Down
6 changes: 3 additions & 3 deletions index
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 11 April 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 12 April 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -81898,9 +81898,9 @@ function handleMessage(event) {
}</pre>

<p>Data sent on a port can be structured data; for example here an
array of strings is passed:</p>
array of strings is passed on a <code><a href=#messageport>MessagePort</a></code>:</p>

<pre>port1.postMessage(['hello', 'world'], 'http://example.com');</pre>
<pre>port1.postMessage(['hello', 'world']);</pre>


<h5 id=examples-5><span class=secno>10.5.1.1 </span>Examples</h5>
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -95912,9 +95912,9 @@ function handleMessage(event) {
}</pre>

<p>Data sent on a port can be structured data; for example here an
array of strings is passed:</p>
array of strings is passed on a <code>MessagePort</code>:</p>

<pre>port1.postMessage(['hello', 'world'], 'http://example.com');</pre>
<pre>port1.postMessage(['hello', 'world']);</pre>


<h5>Examples</h5>
Expand Down

0 comments on commit 9f8f933

Please sign in to comment.