Remove 'on' prefix from event handler macros

This commit is contained in:
Patrick Ngai 2019-03-12 21:34:21 +08:00
parent 7bdfad92a5
commit b17343a0ff
7 changed files with 7 additions and 19 deletions

View file

@ -148,5 +148,5 @@ impl TextTrackMethods for TextTrack {
}
// https://html.spec.whatwg.org/multipage/#handler-texttrack-oncuechange
event_handler!(oncuechange, GetOncuechange, SetOncuechange);
event_handler!(cuechange, GetOncuechange, SetOncuechange);
}