File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface mixin GlobalEventHandlers {
17
17
attribute EventHandler onabort;
18
18
attribute EventHandler onauxclick;
19
19
attribute EventHandler onbeforeinput;
20
- // TODO: attribute EventHandler onbeforematch;
20
+ attribute EventHandler onbeforematch;
21
21
attribute EventHandler onbeforetoggle;
22
22
attribute EventHandler onblur;
23
23
attribute EventHandler oncancel;
@@ -26,9 +26,9 @@ interface mixin GlobalEventHandlers {
26
26
attribute EventHandler onchange;
27
27
attribute EventHandler onclick;
28
28
attribute EventHandler onclose;
29
- // TODO: attribute EventHandler oncontextlost;
29
+ attribute EventHandler oncontextlost;
30
30
attribute EventHandler oncontextmenu;
31
- // TODO: attribute EventHandler oncontextrestored;
31
+ attribute EventHandler oncontextrestored;
32
32
attribute EventHandler oncopy;
33
33
attribute EventHandler oncuechange;
34
34
attribute EventHandler oncut;
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ namespace AttributeNames {
138
138
__ENUMERATE_HTML_ATTRIBUTE (onafterprint) \
139
139
__ENUMERATE_HTML_ATTRIBUTE (onauxclick) \
140
140
__ENUMERATE_HTML_ATTRIBUTE (onbeforeinput) \
141
+ __ENUMERATE_HTML_ATTRIBUTE (onbeforematch) \
141
142
__ENUMERATE_HTML_ATTRIBUTE (onbeforeprint) \
142
143
__ENUMERATE_HTML_ATTRIBUTE (onbeforetoggle) \
143
144
__ENUMERATE_HTML_ATTRIBUTE (onbeforeunload) \
@@ -148,7 +149,9 @@ namespace AttributeNames {
148
149
__ENUMERATE_HTML_ATTRIBUTE (onchange) \
149
150
__ENUMERATE_HTML_ATTRIBUTE (onclick) \
150
151
__ENUMERATE_HTML_ATTRIBUTE (onclose) \
152
+ __ENUMERATE_HTML_ATTRIBUTE (oncontextlost) \
151
153
__ENUMERATE_HTML_ATTRIBUTE (oncontextmenu) \
154
+ __ENUMERATE_HTML_ATTRIBUTE (oncontextrestored) \
152
155
__ENUMERATE_HTML_ATTRIBUTE (oncopy) \
153
156
__ENUMERATE_HTML_ATTRIBUTE (oncuechange) \
154
157
__ENUMERATE_HTML_ATTRIBUTE (oncut) \
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ namespace Web::HTML::EventNames {
23
23
__ENUMERATE_HTML_EVENT (animationiteration) \
24
24
__ENUMERATE_HTML_EVENT (animationstart) \
25
25
__ENUMERATE_HTML_EVENT (beforeinput) \
26
+ __ENUMERATE_HTML_EVENT (beforematch) \
26
27
__ENUMERATE_HTML_EVENT (beforeprint) \
27
28
__ENUMERATE_HTML_EVENT (beforetoggle) \
28
29
__ENUMERATE_HTML_EVENT (beforeunload) \
@@ -36,7 +37,9 @@ namespace Web::HTML::EventNames {
36
37
__ENUMERATE_HTML_EVENT (close) \
37
38
__ENUMERATE_HTML_EVENT (complete) \
38
39
__ENUMERATE_HTML_EVENT (connect) \
40
+ __ENUMERATE_HTML_EVENT (contextlost) \
39
41
__ENUMERATE_HTML_EVENT (contextmenu) \
42
+ __ENUMERATE_HTML_EVENT (contextrestored) \
40
43
__ENUMERATE_HTML_EVENT (controllerchange) \
41
44
__ENUMERATE_HTML_EVENT (copy) \
42
45
__ENUMERATE_HTML_EVENT (cuechange) \
Original file line number Diff line number Diff line change 13
13
E (onabort, HTML::EventNames::abort) \
14
14
E(onauxclick, UIEvents::EventNames::auxclick) \
15
15
E(onbeforeinput, HTML::EventNames::beforeinput) \
16
+ E(onbeforematch, HTML::EventNames::beforematch) \
16
17
E(onbeforetoggle, HTML::EventNames::beforetoggle) \
17
18
E(onblur, HTML::EventNames::blur) \
18
19
E(oncancel, HTML::EventNames::cancel) \
21
22
E(onchange, HTML::EventNames::change) \
22
23
E(onclick, UIEvents::EventNames::click) \
23
24
E(onclose, HTML::EventNames::close) \
25
+ E(oncontextlost, HTML::EventNames::contextlost) \
24
26
E(oncontextmenu, HTML::EventNames::contextmenu) \
27
+ E(oncontextrestored, HTML::EventNames::contextrestored) \
25
28
E(oncopy, HTML::EventNames::copy) \
26
29
E(oncuechange, HTML::EventNames::cuechange) \
27
30
E(oncut, HTML::EventNames::cut) \
You can’t perform that action at this time.
0 commit comments