Skip to content

Commit

Permalink
[e] (0) WebIDL terminology fixes
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21858
Affected topics: DOM APIs, HTML

git-svn-id: http://svn.whatwg.org/webapps@7921 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 6, 2013
1 parent bf75050 commit 525741e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions complete.html
Expand Up @@ -8186,8 +8186,8 @@ <h4 id=safe-passing-of-structured-data><span class=secno>2.7.6 </span>Safe passi

<h4 id=callbacks><span class=secno>2.7.7 </span>Callbacks</h4>

<p>The following callback interface is used in various APIs that interact with <code><a href=#file>File</a></code>
objects:</p>
<p>The following callback function type is used in various APIs that interact with
<code><a href=#file>File</a></code> objects:</p>

<pre class=idl>callback <dfn id=filecallback>FileCallback</dfn> = void (<a href=#file>File</a> file);</pre>

Expand Down Expand Up @@ -71505,7 +71505,7 @@ <h5 id=event-handler-attributes><span class=secno>7.1.6.1 </span>Event handlers<
"<code title="">on</code>" and is followed by the name of the event for which it is intended.</p>

<p>An <a href=#event-handlers title="event handlers">event handler</a> can either have the value null or be set
to a callback object. This is defined using the <code><a href=#eventhandler>EventHandler</a></code> callback interface type.
to a callback object. This is defined using the <code><a href=#eventhandler>EventHandler</a></code> callback function type.
<span class=impl>Initially, event handlers must be set to null.</span></p>

<p>Event handlers are exposed in one of two ways.</p>
Expand Down Expand Up @@ -71783,8 +71783,8 @@ <h5 id=event-handler-attributes><span class=secno>7.1.6.1 </span>Event handlers<

</ol></div>

<hr><p>The <code><a href=#eventhandler>EventHandler</a></code> interface represents a callback used for event handlers. It is
represented in Web IDL as follows:</p>
<hr><p>The <code><a href=#eventhandler>EventHandler</a></code> callback function type represents a callback used for event
handlers. It is represented in Web IDL as follows:</p>

<pre class=idl>[TreatNonCallableAsNull]
callback <dfn id=eventhandlernonnull>EventHandlerNonNull</dfn> = any (<a href=#event>Event</a> event);
Expand Down
10 changes: 5 additions & 5 deletions index
Expand Up @@ -8186,8 +8186,8 @@ interface <dfn id=transferable>Transferable</dfn> { };</pre>

<h4 id=callbacks><span class=secno>2.7.7 </span>Callbacks</h4>

<p>The following callback interface is used in various APIs that interact with <code><a href=#file>File</a></code>
objects:</p>
<p>The following callback function type is used in various APIs that interact with
<code><a href=#file>File</a></code> objects:</p>

<pre class=idl>callback <dfn id=filecallback>FileCallback</dfn> = void (<a href=#file>File</a> file);</pre>

Expand Down Expand Up @@ -71505,7 +71505,7 @@ interface <dfn id=navigatoronline>NavigatorOnLine</dfn> {
"<code title="">on</code>" and is followed by the name of the event for which it is intended.</p>

<p>An <a href=#event-handlers title="event handlers">event handler</a> can either have the value null or be set
to a callback object. This is defined using the <code><a href=#eventhandler>EventHandler</a></code> callback interface type.
to a callback object. This is defined using the <code><a href=#eventhandler>EventHandler</a></code> callback function type.
<span class=impl>Initially, event handlers must be set to null.</span></p>

<p>Event handlers are exposed in one of two ways.</p>
Expand Down Expand Up @@ -71783,8 +71783,8 @@ currently this is unnecessary: http://www.w3.org/Bugs/Public/show_bug.cgi?id=119

</ol></div>

<hr><p>The <code><a href=#eventhandler>EventHandler</a></code> interface represents a callback used for event handlers. It is
represented in Web IDL as follows:</p>
<hr><p>The <code><a href=#eventhandler>EventHandler</a></code> callback function type represents a callback used for event
handlers. It is represented in Web IDL as follows:</p>

<pre class=idl>[TreatNonCallableAsNull]
callback <dfn id=eventhandlernonnull>EventHandlerNonNull</dfn> = any (<a href=#event>Event</a> event);
Expand Down
10 changes: 5 additions & 5 deletions source
Expand Up @@ -7862,8 +7862,8 @@ interface <dfn>Transferable</dfn> { };</pre>

<h4>Callbacks</h4>

<p>The following callback interface is used in various APIs that interact with <code>File</code>
objects:</p>
<p>The following callback function type is used in various APIs that interact with
<code>File</code> objects:</p>

<pre class="idl">callback <dfn>FileCallback</dfn> = void (<span>File</span> file);</pre>

Expand Down Expand Up @@ -79985,7 +79985,7 @@ interface <dfn>NavigatorOnLine</dfn> {
"<code title="">on</code>" and is followed by the name of the event for which it is intended.</p>

<p>An <span title="event handlers">event handler</span> can either have the value null or be set
to a callback object. This is defined using the <code>EventHandler</code> callback interface type.
to a callback object. This is defined using the <code>EventHandler</code> callback function type.
<span class="impl">Initially, event handlers must be set to null.</span></p>

<p>Event handlers are exposed in one of two ways.</p>
Expand Down Expand Up @@ -80309,8 +80309,8 @@ currently this is unnecessary: http://www.w3.org/Bugs/Public/show_bug.cgi?id=119

<hr>

<p>The <code>EventHandler</code> interface represents a callback used for event handlers. It is
represented in Web IDL as follows:</p>
<p>The <code>EventHandler</code> callback function type represents a callback used for event
handlers. It is represented in Web IDL as follows:</p>

<pre class="idl">[TreatNonCallableAsNull]
callback <dfn>EventHandlerNonNull</dfn> = any (<span>Event</span> event);
Expand Down

0 comments on commit 525741e

Please sign in to comment.