зеркало из https://github.com/mozilla/gecko-dev.git
Bug 673859: Don't overwrite the event's trusted flag in nsGenericElement::DispatchClickEvent. r=smaug
This commit is contained in:
Родитель
e29d01fd7b
Коммит
6311b456b0
|
@ -3615,7 +3615,7 @@ nsGenericElement::DispatchClickEvent(nsPresContext* aPresContext,
|
|||
event.isControl = aSourceEvent->isControl;
|
||||
event.isAlt = aSourceEvent->isAlt;
|
||||
event.isMeta = aSourceEvent->isMeta;
|
||||
event.flags = aFlags;
|
||||
event.flags |= aFlags; // Be careful not to overwrite existing flags!
|
||||
|
||||
return DispatchEvent(aPresContext, &event, aTarget, aFullDispatch, aStatus);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче