- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 20 Aug 2008 23:50:22 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv9998 Modified Files: Overview.html Log Message: Define onhashchange=''. (whatwg r2090) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1262 retrieving revision 1.1263 diff -u -d -r1.1262 -r1.1263 --- Overview.html 20 Aug 2008 09:43:34 -0000 1.1262 +++ Overview.html 20 Aug 2008 23:50:19 -0000 1.1263 @@ -7757,6 +7757,7 @@ attribute <span>EventListener</span> <a href="#ondrop" title=handler-ondrop>ondrop</a>; attribute <span>EventListener</span> <a href="#onerror" title=handler-onerror>onerror</a>; attribute <span>EventListener</span> <a href="#onfocus" title=handler-onfocus>onfocus</a>; + attribute <span>EventListener</span> <a href="#onhashchange" title=handler-onhashchange>onhashchange</a>; attribute <span>EventListener</span> <a href="#onkeydown" title=handler-onkeydown>onkeydown</a>; attribute <span>EventListener</span> <a href="#onkeypress" title=handler-onkeypress>onkeypress</a>; attribute <span>EventListener</span> <a href="#onkeyup" title=handler-onkeyup>onkeyup</a>; @@ -7870,6 +7871,9 @@ <dd><code title=handler-onfocus><a href="#onfocus">onfocus</a></code> + <dd><code title=handler-onhashchange><a + href="#onhashchange">onhashchange</a></code> + <dd><code title=handler-onkeydown><a href="#onkeydown">onkeydown</a></code> @@ -32087,6 +32091,7 @@ attribute <span>EventListener</span> <a href="#ondrop" title=handler-ondrop>ondrop</a>; attribute <span>EventListener</span> <a href="#onerror" title=handler-onerror>onerror</a>; attribute <span>EventListener</span> <a href="#onfocus" title=handler-onfocus>onfocus</a>; + attribute <span>EventListener</span> <a href="#onhashchange" title=handler-onhashchange>onhashchange</a>; attribute <span>EventListener</span> <a href="#onkeydown" title=handler-onkeydown>onkeydown</a>; attribute <span>EventListener</span> <a href="#onkeypress" title=handler-onkeypress>onkeypress</a>; attribute <span>EventListener</span> <a href="#onkeyup" title=handler-onkeyup>onkeyup</a>; @@ -33216,6 +33221,15 @@ <p>Must be invoked whenever a <code title=event-focus>focus</code> event is targeted at or bubbles through the element. + <dt><dfn id=onhashchange + title=handler-onhashchange><code>onhashchange</code></dfn></dt> + <!-- new in html5 --> + + <dd> + <p>Must be invoked whenever a <code + title=event-hashchange>hashchange</code> event is targeted at or bubbles + through the element. + <dt><dfn id=onkeydown title=handler-onkeydown><code>onkeydown</code></dfn></dt> <!-- widely used --> @@ -37179,10 +37193,10 @@ <p>If the <i>specified entry</i> has a URL that differs from the <a href="#current1">current entry</a>'s only by its fragment identifier, and the two share the same <code>Document</code> object, then <a - href="#firing2">fire a simple event</a> with the name - <code>hashchanged</code> at <a href="#the-body1">the <code>body</code> - element</a>, and, if the new URL has a fragment identifier, <a - href="#scroll">scroll to the fragment identifier</a>. + href="#firing2">fire a simple event</a> with the name <code + title=event-hashchange>hashchange</code> at <a href="#the-body1">the + <code>body</code> element</a>, and, if the new URL has a fragment + identifier, <a href="#scroll">scroll to the fragment identifier</a>. <li> <p>User agents may also update other aspects of the document view when
Received on Wednesday, 20 August 2008 23:50:57 UTC