Bug 673859: Don't overwrite the event's trusted flag in nsGenericElement::DispatchClickEvent. r=smaug

This commit is contained in:
Kyle Huey 2011-07-25 10:35:25 -07:00
Родитель e29d01fd7b
Коммит 6311b456b0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);
}