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:
longsonr 2019-12-02 05:44:30 +00:00
Родитель 8f73b57bca
Коммит 745d36a183
1 изменённых файлов: 3 добавлений и 0 удалений

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

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