- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 08 Aug 2009 07:55:41 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv7722
Modified Files:
Overview.html
Log Message:
Clarify how events propagate to Window. (whatwg r3565)
Index: Overview.html
===================================================================
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:55:51 UTC