Add onkey* global event handler attributes

This commit is contained in:
James Graham 2015-06-23 20:59:15 -07:00
parent b1021c36c5
commit 7f63309602
4 changed files with 7 additions and 36 deletions

View file

@ -24,6 +24,9 @@ interface GlobalEventHandlers {
attribute EventHandler onclick;
attribute EventHandler onload;
attribute EventHandler oninput;
attribute EventHandler onkeydown;
attribute EventHandler onkeypress;
attribute EventHandler onkeyup;
attribute EventHandler onchange;
attribute EventHandler onsubmit;
};