- From: poot <cvsmail@w3.org>
- Date: Sat, 8 Aug 2009 16:56:03 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Clarify how events propagate to Window. (whatwg r3565) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2757&r2=1.2758&f=h http://html5.org/tools/web-apps-tracker?from=3564&to=3565 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2757 retrieving revision 1.2758 diff -u -d -r1.2757 -r1.2758 --- Overview.html 8 Aug 2009 07:50:44 -0000 1.2757 +++ Overview.html 8 Aug 2009 07:55:38 -0000 1.2758 @@ -43660,13 +43660,15 @@ agent must also dispatch the event to the <code><a href="#window">Window</a></code>, as follows:</p> - <ol><li>In the capture phase, the event must be dispatched to the - <code><a href="#window">Window</a></code> object before being dispatched to any of the - nodes.</li> + <ol><li>In the capture phase, the event must propagate to the + <code><a href="#window">Window</a></code> object before propagating to any of the nodes, + as if the <code><a href="#window">Window</a></code> object was the parent of the + <code>Document</code> in the dispatch chain.</li> - <li>In the bubble phase, the event must be dispatched to the + <li>In the bubble phase, the event must propagate up to the <code><a href="#window">Window</a></code> object at the end of the phase, unless bubbling - has been prevented.</li> + has been prevented, again as if the <code><a href="#window">Window</a></code> object was + the parent of the <code>Document</code> in the dispatch chain.</li> </ol></div><div class="impl">
Received on Saturday, 8 August 2009 07:56:39 UTC