-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.bs
183 lines (165 loc) · 6.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<h1>UI Events</h1>
<pre class="metadata">
Shortname: uievents
Level:
Group: webapps
Status: ED
TR: https://www.w3.org/TR/uievents/
ED: https://w3c.github.io/uievents/
Repository: w3c/uievents
Previous version: from biblio
Editor: Gary Kacmarcik 59482, Google, [email protected]
Editor: Travis Leithead 40117, Microsoft, [email protected]
Former Editor: Doug Schepers, Mar 2008 - May 2011
!Tests: <a href=https://github.com/web-platform-tests/wpt/tree/master/uievents>web-platform-tests uievents/</a> (<a href=https://github.com/web-platform-tests/wpt/labels/uievents>ongoing work</a>)
Abstract:
This specification defines UI Events which extend the DOM Event objects
defined in [[DOM]]. UI Events are those typically implemented by visual
user agents for handling user interaction such as mouse and keyboard input.
</pre>
<pre class="anchors">
urlPrefix: https://www.w3.org/TR/WebIDL/#idl-; type: type;
text: long
urlPrefix: https://w3c.github.io/selection-api/#widl-Window-getSelection-Selection; type: dfn; for: Document
text: getSelection()
url: https://www.w3.org/TR/2004/REC-xml-20040204/#NT-S; type: dfn;
text: white space
url: https://www.w3.org/TR/uievents-key/#key-attribute-value; type: dfn; spec: uievents-key;
text: key attribute value
url: https://www.w3.org/TR/uievents-key/#keys-modifier; type: dfn; spec: uievents-key;
text: modifier keys table
url: https://html.spec.whatwg.org/multipage/forms.html#context-menus; type: dfn;
text: contextmenu
url: https://www.w3.org/TR/pointerevents3/#pointerevent-interface; type: interface; spec: pointerevents3
text: PointerEvent
url: https://dom.spec.whatwg.org/#concept-tree-ancestor; type: dfn;
text: ancestor
url: https://dom.spec.whatwg.org/#concept-event-initialize; type: dfn;
text: initialize an event
url: https://dom.spec.whatwg.org/#concept-event-create; type: dfn;
text: create a new event
text: creating a new event
urlPrefix: https://html.spec.whatwg.org/#; type: dfn; spec: html;
text: click focusable
text: focusable area
<!-- CSS -->
url: https://www.w3.org/TR/CSS21/visuren.html#x43; type: dfn;
text: stacking context
url: https://drafts.csswg.org/css-position-3/#positioned-box; type: dfn;
text: positioned
url: https://drafts.csswg.org/css-position-4/#paint-a-stacking-context; type: dfn;
text: painting a stacking context
url: https://drafts.csswg.org/cssom-view/#dom-document-elementfrompoint; type: dfn; spec: cssom-view
text: elementFromPoint
url: https://drafts.csswg.org/cssom-view/#dom-document-elementsfrompoint; type: dfn; spec: cssom-view
text: elementsFromPoint
</pre>
<pre class="link-defaults">
spec:css2; type:dfn; text:viewport
spec:css-color-3; type:dfn; text:window
spec:dom; type:interface; text:Document
spec:dom; type:attribute; for:Event; text:bubbles
spec:dom; type:attribute; for:Event; text:cancelable
spec:dom; type:attribute; for:Event; text:composed
spec:dom; type:attribute; for:Event; text:target
spec:dom; type:attribute; for:Event; text:type
spec:dom; type:dfn; text:activation behavior
spec:dom; type:dfn; text:event
spec:dom; type:dfn; for:Event; text:target
spec:infra; type:dfn; text:code point
spec:infra; type:dfn; text:user agent
</pre>
<pre class="biblio">
{
"DWW95": {
"title": "Developing International Software for Windows 95 and Windows NT: A Handbook for International Software Design",
"authors": [ "N. Kano" ],
"publisher": "Microsoft Press",
"date": "1995",
"isbn": "1-55615-840-8"
},
"US-ASCII": {
"title": "Coded Character Set - 7-Bit American Standard Code for Information Interchange",
"publisher": "Standard ANSI X3.4-1986",
"date": "1986"
},
"WIN1252": {
"title": "Windows 1252 a Coded Character Set - 8-Bit",
"href": "https://www.microsoft.com/globaldev/reference/sbcs/1252.htm",
"publisher": "Microsoft Corporation"
}
}
</pre>
<pre class="include">
path: stylesheet-extra.include
</pre>
<!-- Introduction ========================================================== -->
<pre class="include">
path: sections/introduction.include
</pre>
<!-- Stylistic Conventions ================================================= -->
<pre class="include">
path: sections/conventions.include
</pre>
<!-- Basic Event Interfaces ================================================ -->
<pre class="include">
path: sections/event-interfaces.include
</pre>
<!-- Event Types =========================================================== -->
<pre class="include">
path: sections/event-uievent.include
</pre>
<pre class="include">
path: sections/event-focusevent.include
</pre>
<pre class="include">
path: sections/event-mouseevent.include
</pre>
<pre class="include">
path: sections/event-wheelevent.include
</pre>
<pre class="include">
path: sections/event-inputevent.include
</pre>
<pre class="include">
path: sections/event-keyboardevent.include
</pre>
<pre class="include">
path: sections/event-compositionevent.include
</pre>
<!-- Keyboard and key values =============================================== -->
<pre class="include">
path: sections/keyboard.include
</pre>
<!-- External Algorithms =================================================== -->
<pre class="include">
path: sections/external-algorithms.include
</pre>
<!-- Legacy Event Initializers ============================================= -->
<pre class="include">
path: sections/legacy-event-initializers.include
</pre>
<!-- Legacy Key & Mouse Event Attributes =================================== -->
<pre class="include">
path: sections/legacy-key-attributes.include
</pre>
<!-- Legacy Event Types ==================================================== -->
<pre class="include">
path: sections/legacy-event-types.include
</pre>
<!-- Extending Events ====================================================== -->
<pre class="include">
path: sections/extending-events.include
</pre>
<!-- Security Considerations =============================================== -->
<pre class="include">
path: sections/security.include
</pre>
<!-- Acknowledgements ====================================================== -->
<pre class="include">
path: sections/acknowledgements.include
</pre>
<!-- Glossary ============================================================== -->
<pre class="include">
path: sections/glossary.include
</pre>