Rename SharedKeyboardAndMouseEventInit to EventModifierInit

This commit is contained in:
zeusintuivo 2016-07-06 10:46:22 +02:00
parent 2239e827bd
commit d26bb29bb2
4 changed files with 5 additions and 5 deletions

View file

@ -499,7 +499,7 @@ interface MouseEvent : UIEvent {
boolean getModifierState (DOMString keyArg);
};
dictionary MouseEventInit : SharedKeyboardAndMouseEventInit {
dictionary MouseEventInit : EventModifierInit {
long screenX = 0;
long screenY = 0;
long clientX = 0;
@ -509,7 +509,7 @@ dictionary MouseEventInit : SharedKeyboardAndMouseEventInit {
EventTarget? relatedTarget = null;
};
dictionary SharedKeyboardAndMouseEventInit : UIEventInit {
dictionary EventModifierInit : UIEventInit {
boolean ctrlKey = false;
boolean shiftKey = false;
boolean altKey = false;