[html5] r2956 - [e] (0) xref error w/ MessagePortArray

whatwg at whatwg.org whatwg at whatwg.org
Thu Apr 2 12:02:57 PDT 2009


Author: ianh
Date: 2009-04-02 12:02:57 -0700 (Thu, 02 Apr 2009)
New Revision: 2956

Modified:
   index
   source
Log:
[e] (0) xref error w/ MessagePortArray

Modified: index
===================================================================
--- index	2009-04-02 18:51:55 UTC (rev 2955)
+++ index	2009-04-02 19:02:57 UTC (rev 2956)
@@ -39161,7 +39161,7 @@
 
   // <a href=#crossDocumentMessages>cross-document messaging</a>
   void <a href=#dom-window-postmessage-2 title=dom-window-postMessage-2>postMessage</a>(in any message, in DOMString targetOrigin);
-  void <a href=#dom-window-postmessage-3 title=dom-window-postMessage-3>postMessage</a>(in any message, in <span>MessagePortArray</span> ports, in DOMString targetOrigin);
+  void <a href=#dom-window-postmessage-3 title=dom-window-postMessage-3>postMessage</a>(in any message, in <a href=#messageportarray>MessagePortArray</a> ports, in DOMString targetOrigin);
 
   // <a href=#event-handler-dom-attributes>event handler DOM attributes</a>
            attribute <a href=#function>Function</a> <a href=#handler-onabort title=handler-onabort>onabort</a>;
@@ -49821,9 +49821,9 @@
   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 <a href=#windowproxy>WindowProxy</a> <a href=#dom-messageevent-source title=dom-MessageEvent-source>source</a>;
-  readonly attribute <span>MessagePortArray</span> <a href=#dom-messageevent-ports title=dom-MessageEvent-ports>ports</a>;
-  void <a href=#dom-messageevent-initmessageevent title=dom-MessageEvent-initMessageEvent>initMessageEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dataArg, in DOMString originArg, in DOMString lastEventIdArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <span>MessagePortArray</span> portsArg);
-  void <a href=#dom-messageevent-initmessageeventns title=dom-MessageEvent-initMessageEventNS>initMessageEventNS</a>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dataArg, in DOMString originArg, in DOMString lastEventIdArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <span>MessagePortArray</span> portsArg);
+  readonly attribute <a href=#messageportarray>MessagePortArray</a> <a href=#dom-messageevent-ports title=dom-MessageEvent-ports>ports</a>;
+  void <a href=#dom-messageevent-initmessageevent title=dom-MessageEvent-initMessageEvent>initMessageEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dataArg, in DOMString originArg, in DOMString lastEventIdArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <a href=#messageportarray>MessagePortArray</a> portsArg);
+  void <a href=#dom-messageevent-initmessageeventns title=dom-MessageEvent-initMessageEventNS>initMessageEventNS</a>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dataArg, in DOMString originArg, in DOMString lastEventIdArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <a href=#messageportarray>MessagePortArray</a> portsArg);
 };</pre>
 
   <dl class=domintro><dt><var title="">event</var> . <code title=dom-MessageEvent-data><a href=#dom-messageevent-data>data</a></code></dt>
@@ -49865,7 +49865,7 @@
 
    <dd>
 
-    <p>Returns the <code>MessagePortArray</code> sent with the
+    <p>Returns the <code><a href=#messageportarray>MessagePortArray</a></code> sent with the
     message, for <a href=#crossDocumentMessages>cross-document messaging</a> and
     <a href=#channel-messaging>channel messaging</a>.</p>
 
@@ -49899,7 +49899,7 @@
 
   <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
-  <a href=#channel-messaging>channel messaging</a> the <code>MessagePortArray</code>
+  <a href=#channel-messaging>channel messaging</a> the <code><a href=#messageportarray>MessagePortArray</a></code>
   being sent, if any.</p>
 
   <p>Unless otherwise specified, when the user agent creates and
@@ -50320,11 +50320,11 @@
   <p>Each channel has two message ports. Data sent through one port is
   received by the other port, and vice versa.</p>
 
-  <pre class=idl>typedef sequence<MessagePort> MessagePortArray;
+  <pre class=idl>typedef sequence<MessagePort> <dfn id=messageportarray>MessagePortArray</dfn>;
 
 interface <dfn id=messageport>MessagePort</dfn> {
   readonly attribute boolean <a href=#dom-messageport-active title=dom-MessagePort-active>active</a>;
-  void <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>postMessage</a>(in any message, [Optional] in <span>MessagePortArray</span> ports);<!--
+  void <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>postMessage</a>(in any message, [Optional] in <a href=#messageportarray>MessagePortArray</a> ports);<!--
   <span>MessagePort</span> <span title="dom-MessagePort-startConversation">startConversation</span>(in any message);-->
   void <a href=#dom-messageport-start title=dom-MessagePort-start>start</a>();
   void <a href=#dom-messageport-close title=dom-MessagePort-close>close</a>();

Modified: source
===================================================================
--- source	2009-04-02 18:51:55 UTC (rev 2955)
+++ source	2009-04-02 19:02:57 UTC (rev 2956)
@@ -61961,7 +61961,7 @@
   <p>Each channel has two message ports. Data sent through one port is
   received by the other port, and vice versa.</p>
 
-  <pre class="idl">typedef sequence<MessagePort> MessagePortArray;
+  <pre class="idl">typedef sequence<MessagePort> <dfn>MessagePortArray</dfn>;
 
 interface <dfn>MessagePort</dfn> {
   readonly attribute boolean <span title="dom-MessagePort-active">active</span>;




More information about the Commit-Watchers mailing list