diff --git a/mozilla/browser/components/bookmarks/content/bookmarksTree.xml b/mozilla/browser/components/bookmarks/content/bookmarksTree.xml index 047fba27d95..a93985d5eef 100644 --- a/mozilla/browser/components/bookmarks/content/bookmarksTree.xml +++ b/mozilla/browser/components/bookmarks/content/bookmarksTree.xml @@ -684,7 +684,8 @@ return false; var selection = BookmarksUtils.getSelectionFromXferData(dragSession); - if (selection.containsImmutable) + var isBookmark = dragSession.isDataFlavorSupported("moz/rdfitem"); + if (isBookmark && selection.containsImmutable) return false; if (orientation == BookmarksUtils.DROP_ON) return true;