diff options
author | xu3u4 <u4xu3@yahoo.com.tw> | 2019-12-07 20:07:15 +0900 |
---|---|---|
committer | xu3u4 <u4xu3@yahoo.com.tw> | 2019-12-07 21:44:36 +0900 |
commit | 7529591e8f9f6bd24c921b1745ac62b8dff1e1cd (patch) | |
tree | 46465314c57c53f4b86df032a2f6cdc84b2be7ea /components/script/dom/macros.rs | |
parent | 2d2cd2b7d742cfa95a1329955545face8fffc7e4 (diff) | |
download | servo-7529591e8f9f6bd24c921b1745ac62b8dff1e1cd.tar.gz servo-7529591e8f9f6bd24c921b1745ac62b8dff1e1cd.zip |
Add onformdata to GlobalEventHandlers
Diffstat (limited to 'components/script/dom/macros.rs')
-rw-r--r-- | components/script/dom/macros.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/macros.rs b/components/script/dom/macros.rs index 755624a8855..a1941662963 100644 --- a/components/script/dom/macros.rs +++ b/components/script/dom/macros.rs @@ -446,6 +446,7 @@ macro_rules! global_event_handlers( event_handler!(emptied, GetOnemptied, SetOnemptied); event_handler!(ended, GetOnended, SetOnended); error_event_handler!(error, GetOnerror, SetOnerror); + event_handler!(formdata, GetOnformdata, SetOnformdata); event_handler!(input, GetOninput, SetOninput); event_handler!(invalid, GetOninvalid, SetOninvalid); event_handler!(keydown, GetOnkeydown, SetOnkeydown); |