Skip to content

Commit

Permalink
[e] (0) Try slightly more pedantically correct wording. Unfortunately…
Browse files Browse the repository at this point in the history
… DOM Core doesn't have good terminology for this either way.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=14092

git-svn-id: http://svn.whatwg.org/webapps@6707 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 19, 2011
1 parent d48d797 commit f2ea913
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -69179,8 +69179,8 @@ <h5 id=event-handler-attributes><span class=secno>7.1.6.1 </span>Event handlers<
<!--test: <a href="http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A...%3Cscript%3E%0Aw(a%3Ddocument.implementation.createDocument(null%2C%20null%2C%20null))%3B%0Aw(a.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'html')))%3B%0Aw(b%3Da.firstChild.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'body')))%3B%0Aw(b.test%20%3D%20w)%3B%0Aw(b.setAttribute('onclick'%2C%20'test(%22fire%3A%20%22%20%2B%20event)'))%3B%0Aw(b.onclick)%3B%0Aw(e%3Da.createEvent('Event'))%3B%0Aw(e.initEvent('click'%2C%20false%2C%20false))%3B%0Aw(b.dispatchEvent(e))%3B%0A%3C%2Fscript%3E">test</a>-->

<p>Many objects can have <dfn id=event-handlers>event handlers</dfn> specified. These
act as bubbling event listeners for the object on which they are
specified.</p>
act as non-capture event listeners for the object on which they are
specified. <a href=#refsDOMCORE>[DOMCORE]</a></p>

<p>An <a href=#event-handlers title="event handlers">event handler</a> can either
have the value null or be set to a <code><a href=#function>Function</a></code>
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -69179,8 +69179,8 @@ interface <dfn id=navigatoronline>NavigatorOnLine</dfn> {
<!--test: <a href="http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A...%3Cscript%3E%0Aw(a%3Ddocument.implementation.createDocument(null%2C%20null%2C%20null))%3B%0Aw(a.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'html')))%3B%0Aw(b%3Da.firstChild.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'body')))%3B%0Aw(b.test%20%3D%20w)%3B%0Aw(b.setAttribute('onclick'%2C%20'test(%22fire%3A%20%22%20%2B%20event)'))%3B%0Aw(b.onclick)%3B%0Aw(e%3Da.createEvent('Event'))%3B%0Aw(e.initEvent('click'%2C%20false%2C%20false))%3B%0Aw(b.dispatchEvent(e))%3B%0A%3C%2Fscript%3E">test</a>-->

<p>Many objects can have <dfn id=event-handlers>event handlers</dfn> specified. These
act as bubbling event listeners for the object on which they are
specified.</p>
act as non-capture event listeners for the object on which they are
specified. <a href=#refsDOMCORE>[DOMCORE]</a></p>

<p>An <a href=#event-handlers title="event handlers">event handler</a> can either
have the value null or be set to a <code><a href=#function>Function</a></code>
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -78677,8 +78677,8 @@ interface <dfn>NavigatorOnLine</dfn> {
<!--test: <a href="http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A...%3Cscript%3E%0Aw(a%3Ddocument.implementation.createDocument(null%2C%20null%2C%20null))%3B%0Aw(a.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'html')))%3B%0Aw(b%3Da.firstChild.appendChild(a.createElementNS('http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml'%2C%20'body')))%3B%0Aw(b.test%20%3D%20w)%3B%0Aw(b.setAttribute('onclick'%2C%20'test(%22fire%3A%20%22%20%2B%20event)'))%3B%0Aw(b.onclick)%3B%0Aw(e%3Da.createEvent('Event'))%3B%0Aw(e.initEvent('click'%2C%20false%2C%20false))%3B%0Aw(b.dispatchEvent(e))%3B%0A%3C%2Fscript%3E">test</a>-->

<p>Many objects can have <dfn>event handlers</dfn> specified. These
act as bubbling event listeners for the object on which they are
specified.</p>
act as non-capture event listeners for the object on which they are
specified. <a href="#refsDOMCORE">[DOMCORE]</a></p>

<p>An <span title="event handlers">event handler</span> can either
have the value null or be set to a <code>Function</code>
Expand Down

0 comments on commit f2ea913

Please sign in to comment.