-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.bs
62 lines (47 loc) · 1.22 KB
/
index.bs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<h1>UI Event Order</h1>
<pre class="metadata">
Shortname: event-order
Level:
Group: uievents
Status: WD
TR: http://www.w3.org/TR/eventorder/
ED: https://github.com/w3c/eventorder/
Repository: garykac/event-order
Previous Version:
<none>
Editor: Gary Kacmarcik, Google, [email protected]
Abstract:
This specification defines the order in which various [[UIEvents]] should
fire.
</pre>
<h2 id="introduction">Introduction</h2>
A canonical list of event order so that this info isn't split across
multiple specifications.
<h2 id="event-order">Event Order</h3>
Shifting focus from element A to element B
* focusout - Sent before element A loses focus
* focusin - Sent before element B receives focus
* blur - Sent after element A loses focus
* focus - Sent after element B receives focus
* mousemove
* mouseout
* mouseleave
* mouseover
* mouseenter
* mousedown
* mouseup
* click
* dblclick
* keydown
* compositionstart
* beforeinput
* compositionupdate
* input
* compositionend
* keyup
<h2 id="acknowledgements-contributors">Acknowledgements</h2>
Thanks to the following people for the discussions that lead to the creation
of this proposal:
Gary Kacmarcik (Google),
Johannes Wilm (Fidus),
Chong Zhang (Google)