DragOperation DragController::dragOperation(DragData& dragData) { // FIXME: This logic is incomplete if (dragData.containsURL()) return DragOperationCopy; return DragOperationNone; }
DragOperation DragController::dragOperation(DragData& dragData) { //FIXME: to match the macos behaviour we should return DragOperationNone //if we are a modal window, we are the drag source, or the window is an attached sheet //If this can be determined from within WebCore operationForDrag can be pulled into //WebCore itself return dragData.containsURL() && !m_didInitiateDrag ? DragOperationCopy : DragOperationNone; }