mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Auto merge of #12383 - zeusintuivo:feature/11611, r=nox
Rename SharedKeyboardAndMouseEventInit to EventModifierInit <!-- Please describe your changes on the following line: --> - [X] renamed file SharedMouseAndKeyboardEventInit, - [X] changed SharedKeyboardAndMouseEventInit to EventModifierInit. - [X] Rebased mozilla/master into it. - [x] Ran build and tidy test without errors --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #11611 (github issue number if applicable). <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12383) <!-- Reviewable:end -->
This commit is contained in:
commit
9e010a8aec
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue