зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1599296 - SVG images and links should not be draggable r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D55385 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
8f73b57bca
Коммит
745d36a183
|
@ -3429,6 +3429,9 @@ bool nsContentUtils::ContentIsDraggable(nsIContent* aContent) {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
if (aContent->IsSVGElement()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// special handling for content area image and link dragging
|
||||
return IsDraggableImage(aContent) || IsDraggableLink(aContent);
|
||||
|
|
Загрузка…
Ссылка в новой задаче